-
Bug
-
Resolution: Incorrectly Filed
-
Low
-
Minor
Issue Summary
When using a "Work fields condition" component, and comparing two fields such as "Multi line 1" and "Multi line 2" - the fields will not always be equal, even when they contain the same content. Smart value conversion and .trim() for smart value comparison is needed to come back as showing equal in all situations.
Steps to Reproduce
- Populate two different multi-line fields with the same text
- Use a work fields condition to compare whether these fields are equal, it will fail regardless in some cases.
Expected Results
Comparing two multi-line fields should bring back accurate results as to whether the fields are equal.
Actual Results
Two multi-line fields with the exact same text will not always equal each other - this may happen more often with multiple lines with line breaks in-between or other factors involved, but can be replicated.
Workaround
Utilize smart value compare conditionals instead, example:
{{triggerIssue.customfield_11111.trim()}}
EQUALS
{{triggerIssue.customfield_22222.trim()}}