Fragment Condition for Issue Type

Julia September 28, 2022

This is a condition on a fragment for a Web Panel. I only want it to show on "Detection Issue" and when Status is "done" or "will not do" 

 

The status portion is working, but not the issue type. Any ideas? 

 

Screen Shot 2022-09-28 at 12.45.09 PM.png

1 answer

1 accepted

7 votes
Answer accepted
Florian Bonniec
Community Leader
Community Leader
Community Leaders are connectors, ambassadors, and mentors. On the online community, they serve as thought leaders, product experts, and moderators.
September 28, 2022

Hi @Julia 

 

Have you try

issue.issueType.name == 'Detection Issue' && (issue.status.name == 'Done' || issue.status.name == 'Wil Not Do') 

Regards

Julia September 28, 2022

Thank you that worked !

Suggest an answer

Log in or Sign up to answer