Fix nami page navigation

This commit is contained in:
philipp lang 2024-03-13 16:07:12 +01:00
parent 7e9f424780
commit d7259f828f
1 changed files with 3 additions and 5 deletions

View File

@ -38,9 +38,9 @@
nochmal auswählen.
</p>
<div class="flex mt-4 space-x-3">
<v-text name="search_firstname" label="Vorname" id="search_firstname" v-model="searchData.vorname" @input="searchForMember"></v-text>
<v-text name="search_lastname" label="Nachname" id="search_lastname" v-model="searchData.nachname" @input="searchForMember"></v-text>
<v-dropdown name="search_group" label="Stufe" id="search_group" v-model="searchData.untergliederungId" @input="searchForMember" :options="eventMeta.agegroups"></v-dropdown>
<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>
</div>
<div class="relative min-h-48">
<div class="relative grid grid-cols-[repeat(auto-fit,minmax(200px,1fr))] gap-2 mt-2">
@ -175,8 +175,6 @@ const props = defineProps({
},
});
const model = ref(null);
const defaultMember = computed(() => {
var fields = {};
memberFields.value.forEach((field) => (fields[field.key] = field.default));