Commit 75b144d6 by CalciumIon

feat: Add filtering and search functionality to model selection in EditChannel and EditTagModal

- Implemented filter and search position options in the model selection dropdowns for both EditChannel and EditTagModal components.
- Enhanced user experience by allowing users to easily find and select models from a potentially large list.
parent 5872e8a8
...@@ -710,6 +710,8 @@ const EditChannel = (props) => { ...@@ -710,6 +710,8 @@ const EditChannel = (props) => {
required required
multiple multiple
selection selection
filter
searchPosition='dropdown'
onChange={(value) => { onChange={(value) => {
handleInputChange('models', value); handleInputChange('models', value);
}} }}
......
...@@ -259,6 +259,8 @@ const EditTagModal = (props) => { ...@@ -259,6 +259,8 @@ const EditTagModal = (props) => {
required required
multiple multiple
selection selection
filter
searchPosition='dropdown'
onChange={(value) => { onChange={(value) => {
handleInputChange('models', value); handleInputChange('models', value);
}} }}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment