I am trying to update a custom field value with Jira automation based on the result of the multiplication of two other custom fields, but the audit log shows me this error for Edit issue:
" Error while rendering additional fields. Unknown unary operator * at character position 1"
My JSON looks like this:
{
"fields": {
"customfield_15813" : "{{#=}}{{issue.customFieldId_15601.value}}*{{issue.customFieldId_15812.value}}{{/}}"
}
}
Any suggestions how to proceed? Thank you very much already in advance!
Hi
Please consider using the following JSON:
{
"fields": {
"customfield_15813" : "{{# =}} {{customfield_15601}} * {{customfield_15812}} {{/}}"
}
}
Smart values are name, spacing, and case-sensitive. Therefore, please ensure that spaces are preserved accordingly.
Thank you.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.