I'm trying to display the link to jira issues in a structure board where I want the background color of the link text to vary depending on whether a specific field in the jira issue has a certain value.
I'm trying something like this:
("key" in the local variables is intended to refer to the "Key" field holding the JIRA issue ID)
WITH redLink ="{panel:bgColor=#E65A5A}key{panel}"|"https://jira.something.com/browse/key":
WITH greenLink =
"{panel:bgColor=#ADFF2F}key{panel}"|"https://jira.something.com/browse/key":
if (MATCH(JIRA_COLUMN, "*SomeText*"); greenLink; redLink )
But the markup in the local variables is not picking up the "key" column...
It's probably something obvious that I do not see...