Hi
I have a confiform that creates Jira Stories based on selections made.
I use the inputs of the form to populate the Description field of Jira.
I would like some of the text to display as bold, but unsure how.
For example the confiform has:
"description": "[entry.Description.escapeJSON]\n \nDomain: [entry.Domain.label]\n
I would like this to display in the Description field as
Domain: domain input
HI @Lauren McMahon and welcome to this community
Do you want your description field's value to show up after the "Domain label"?
Like this?
"description": "Domain: [entry.Description.escapeJSON]",
Alex
No, I understand how to display the content I want. I want to format the text going into the description field.
Domain is a drop down selection on my confiform. For example the Domain could be country or city. I currently have this displaying in the description field of Jira as:
Domain: Country
but I want to format it so it looks like
Domain: Country
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Is it about making the label for Domain BOLD?
If the field in Jira uses a wikistyle renderer then
https://jira.atlassian.com/secure/WikiRendererHelpAction.jspa?section=all
"description": "[entry.Description.escapeJSON]\n \n*Domain*: [entry.Domain.label]\n
Alex
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.