You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The searchable select doesn't clean up properly when an allowed option is no longer allowed. The underlying value gets set to null as expected but it remains visually.
Steps to Reproduce
Add a searchable select select1 with static values a and b
Add a second searchable select with dynamic value if select1 = "a" then ["a1", "a2"] else ["b1", "b2"]
Select "a" on select1
Select "a1" on the other select
Select "b" on select1
Other select isn't cleared, but underlying data is indeed cleared properly
Expected Behavior
The field should be visually cleared
The text was updated successfully, but these errors were encountered:
Related Support Ticket - https://jira.camunda.com/browse/SUPPORT-20593
Describe the Bug
The searchable select doesn't clean up properly when an allowed option is no longer allowed. The underlying value gets set to null as expected but it remains visually.
Steps to Reproduce
select1
with static values a and bif select1 = "a" then ["a1", "a2"] else ["b1", "b2"]
"a"
onselect1
"a1"
on the other select"b"
onselect1
Expected Behavior
The text was updated successfully, but these errors were encountered: