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 b98bd38 commit bbec8efCopy full SHA for bbec8ef
dashboard/src/components/shared/ConfigItemRenderer.vue
@@ -86,19 +86,21 @@
86
></v-checkbox>
87
</div>
88
89
- <v-combobox
+ <v-select
90
v-else-if="itemMeta?.type === 'list' && itemMeta?.options"
91
:model-value="modelValue"
92
@update:model-value="emitUpdate"
93
- :items="itemMeta.options"
+ :items="getSelectItems(itemMeta)"
94
+ item-title="title"
95
+ item-value="value"
96
:disabled="itemMeta?.readonly"
97
density="compact"
98
variant="outlined"
99
class="config-field"
100
hide-details
101
chips
102
multiple
- ></v-combobox>
103
+ ></v-select>
104
105
<v-select
106
v-else-if="itemMeta?.options"
0 commit comments