example
import groovy.transform.BaseScript
import com.onresolve.jira.groovy.user.FieldBehaviours
@BaseScript FieldBehaviours fieldBehaviours
def desc = getFieldById("description")
def table = """"
||Check||ALFA||BETA||REVIEW
||You are assigned to main task card|| || || ||
"""
if (!underlyingIssue?.description) {
desc.setFormValue(table)
}
I want the text to be align to the left but it stays centered - how do I achive this?
regards,
Helen Ahlberg