Hi Team,
I want line break between issue description .I tried below request. but it’s not working. I am getting 400 bad request issue.how i add new line break between issue description?
{
fields: {
description: {
type: "doc",
version: 1,
content: [
{
type: "paragraph",
content: [
{
text: "This is the first line\n\nThis is the second line with a break.",
type: "text"
}
]
}
]
}
}
}