We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fb98875 commit 35bdb53Copy full SHA for 35bdb53
packages/shared/widget-plugin-filtering/src/controllers/picker/mixins/TagPickerControllerMixin.ts
@@ -142,6 +142,15 @@ export function TagPickerControllerMixin<TBase extends BaseController>(Base: TBa
142
highlightedIndex: state.highlightedIndex,
143
inputValue: state.inputValue
144
};
145
+ case useCombobox.stateChangeTypes.InputClick:
146
+ if (state.isOpen) {
147
+ return {
148
+ ...changes,
149
+ isOpen: true,
150
+ highlightedIndex: state.highlightedIndex
151
+ };
152
+ }
153
+ return changes;
154
default:
155
return {
156
...changes,
0 commit comments