You're on your way to the next level! Join the Kudos program to earn points and save your progress.
Level 1: Seed
25 / 150 points
Next: Root
1 badge earned
Challenges come and go, but your rewards stay with you. Do more to earn more!
What goes around comes around! Share the love by gifting kudos to your peers.
Keep earning points to reach the top of the leaderboard. It resets every quarter so you always have a chance!
Join now to unlock these features and more
The Atlassian Community can help you and your team get more value out of Atlassian products and practices.
Hi, we are using Jira 8.2.1 and Scriptrunner 5.6.8.1.
We added a Web Panel on the Issue View where we show some custom field values. The custom fields are multi-line text types but on the issue view the value is shown as one single line without any breaks. For example:
Step 1
Step 2
Step 3
is shown as:
Step 1 Step 2 Step 3
Our code:
import com.atlassian.jira.component.ComponentAccessor
import com.atlassian.jira.issue.Issue
def issue = context.issue as Issue
def issueManager = ComponentAccessor.getIssueManager()
def customFieldManager = ComponentAccessor.getCustomFieldManager()
def cFieldInstance = customFieldManager.getCustomFieldObject(10607L)
def cFieldInstanceName = cFieldInstance.getFieldName()
def cFieldSteps = customFieldManager.getCustomFieldObject(10606L)
def cFieldStepsName = cFieldSteps.getFieldName()
def cFieldActualResults = customFieldManager.getCustomFieldObject(10604L)
def cFieldActualResultsName = cFieldActualResults.getFieldName()
def cFieldExpectedResults = customFieldManager.getCustomFieldObject(10603L)
def cFieldExpectedResultsName = cFieldExpectedResults.getFieldName()
def cFieldInstanceValue = issue.getCustomFieldValue(cFieldInstance)
def cFieldStepsValue = issue.getCustomFieldValue(cFieldSteps)
def cFieldActualResultsValue = issue.getCustomFieldValue(cFieldActualResults)
def cFieldExpectedResultsValue = issue.getCustomFieldValue(cFieldExpectedResults)
writer.write(cFieldInstanceName + ": " + cFieldInstanceValue + "<br>")
writer.write(cFieldStepsName + ": " + cFieldStepsValue + "<br>")
writer.write(cFieldExpectedResultsName + ": " + cFieldExpectedResultsValue + "<br>")
writer.write(cFieldActualResultsName + ": " + cFieldActualResultsValue + "<br>")
Thanks for help.