Hello,
I'm struggling with something very stupid that I do not understand.
I have a custom field (select list single choice) that I need to manipulate with smart values in Automation for Jira. I'm running a test automation with manual trigger to check what the audit logs have received. The custom field is not empty in the issue, however any kind of manipulation gives me blank values. Here's some example:
{{issue.fields.customfield_10191}} -> AR0062
{{issue.fields.customfield_10191.lenght}} -> blank
{{issue.fields.customfield_10191.left(2)}} -> blank
{{issue.fields.customfield_10191.toString().left(2)}} ->blank
The automation is not editing the issue, is just making these manipulations in the audit logs. Even so, I think I have all the permissions to run these operations. Am I doing something wrong with the syntax?I believe I double checked te documentation multiple times without finding any error.
Thanks!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
It's likely because the Select List field is being read based on the option IDs, rather than the name of each value.
You could use a variable to get around this:
Ste
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.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.