Set allowcustom for dropdown
This commit is contained in:
parent
6222871cb6
commit
99b3b1f0cb
|
@ -40,7 +40,15 @@
|
|||
<div class="flex mt-4 space-x-3">
|
||||
<v-text name="search_firstname" label="Vorname" id="search_firstname" v-model="searchData.vorname" @input="searchForMember(1)"></v-text>
|
||||
<v-text name="search_lastname" label="Nachname" id="search_lastname" v-model="searchData.nachname" @input="searchForMember(1)"></v-text>
|
||||
<v-dropdown name="search_group" label="Stufe" id="search_group" v-model="searchData.untergliederungId" @input="searchForMember(1)" :options="eventMeta.agegroups"></v-dropdown>
|
||||
<v-dropdown
|
||||
name="search_group"
|
||||
:allowcustom="false"
|
||||
label="Stufe"
|
||||
id="search_group"
|
||||
v-model="searchData.untergliederungId"
|
||||
@input="searchForMember(1)"
|
||||
:options="eventMeta.agegroups"
|
||||
></v-dropdown>
|
||||
</div>
|
||||
<div class="relative min-h-48">
|
||||
<div class="relative grid grid-cols-[repeat(auto-fit,minmax(200px,1fr))] gap-2 mt-2">
|
||||
|
|
Loading…
Reference in New Issue