fixed search filter is not working

This commit is contained in:
asift798
2022-03-04 15:00:56 +05:30
parent 83a7c97e9e
commit f6771dafd3
10 changed files with 15 additions and 11 deletions

View File

@ -48,7 +48,7 @@
value-prop="code"
:placeholder="$tc('settings.preferences.select_language')"
class="w-full"
track-by="code"
track-by="name"
:searchable="true"
:invalid="v$.currentPreferences.language.$error"
/>
@ -95,7 +95,7 @@
label="key"
value-prop="value"
:placeholder="$tc('settings.preferences.select_time_zone')"
track-by="value"
track-by="key"
:searchable="true"
:invalid="v$.currentPreferences.time_zone.$error"
/>

View File

@ -75,7 +75,7 @@
:options="globalStore.config.languages"
label="name"
value-prop="code"
track-by="code"
track-by="name"
open-direction="top"
/>
</BaseInputGroup>

View File

@ -23,7 +23,7 @@
v-model="filters.selected_disk"
:content-loading="isFetchingInitialData"
:options="getDisksOptions"
track-by="id"
track-by="name"
:placeholder="$t('settings.disk.select_disk')"
label="name"
:searchable="true"

View File

@ -40,7 +40,7 @@
label="name"
value-prop="code"
class="w-full"
track-by="code"
track-by="name"
:searchable="true"
:invalid="v$.language.$error"
/>
@ -79,7 +79,7 @@
:options="globalStore.dateFormats"
label="display_date"
value-prop="carbon_format_value"
track-by="carbon_format_value"
track-by="display_date"
searchable
:invalid="v$.carbon_date_format.$error"
class="w-full"

View File

@ -70,6 +70,7 @@
searchable
:can-deselect="false"
class="w-full"
track-by="name"
/>
</BaseInputGroup>