We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent daf7b0d commit f5f88b3Copy full SHA for f5f88b3
plugins/ui/docs/components/combo_box.md
@@ -789,7 +789,7 @@ def ui_combo_box_multi_select_example():
789
set_selection_state(new_value)
790
set_items(
791
lambda prev_items: prev_items + [new_value]
792
- if new_value not in prev_items
+ if new_value not in prev_items and new_value is not None
793
else prev_items
794
)
795
print(f"Selection changed to {items}")
0 commit comments