Delete value from multi enum field
Hello!
Is there any way to deselect a value from a custom mutli enum field?
Lets say i have a field with “a”, “b”, and “c” values selected, and I want a workflow, to deselect “b” from the multiple enum field. Is it possible somehow? I can't seem to find a solution.
Please sign in to leave a comment.
Hello,
I'm Lena from the YouTrack Team.
The values in the enum field are stored as a Set, and you can delete any element from the Set using the delete() method.
Perfect! Thank you! The article solved my issues.
You are welcome!