fix(dashboard): use autocomplete for list options#7889
fix(dashboard): use autocomplete for list options#7889bugkeep wants to merge 1 commit intoAstrBotDevs:masterfrom
Conversation
There was a problem hiding this comment.
Code Review
This pull request replaces the v-select component with v-autocomplete in ConfigItemRenderer.vue for list-type configurations and adds the clear-on-select property. A review comment suggests further improving the user interface by adding the closable-chips prop to the multi-select autocomplete component, allowing users to remove selected items more easily.
| clear-on-select | ||
| ></v-autocomplete> |
There was a problem hiding this comment.
When using multiple selection with chips, it is highly recommended to include the closable-chips prop. This allows users to remove selected items directly by clicking the 'x' on the chip, which is much more intuitive and efficient than having to open the menu and find the item to deselect it, especially when the list of options is long.
clear-on-select
closable-chips
></v-autocomplete>
Fixes #7884\n\n- Replace plugin config list+options field from Vuetify v-select (multiple chips) to v-autocomplete so typing filters options instead of toggling the first prefix match.\n- Enable clear-on-select so search input clears after selecting an item.
Summary by Sourcery
Bug Fixes: