I am adding a behavior for the description field and I need the text (Acceptance Criteria) to appear a couple returns down from the field. This is the code I am using:
def desc = getFieldById("description")
def defaultValue = """
*Acceptance Criteria:*
.
""".replaceAll(/ /, '')
if (! underlyingIssue?.description) {
desc.setFormValue(defaultValue)
}