fix wrong input field to select clos #25

This commit is contained in:
Adrian Zürcher
2025-11-16 08:39:17 +01:00
parent a6f4b47d92
commit a18b01450d

View File

@@ -60,12 +60,17 @@
filled
v-model="localMember.email"
></q-input>
<q-input
<q-select
class="q-ml-md col-5"
:label="$t('group')"
:options="props.group"
filled
emit-value
map-options
option-value="name"
option-label="name"
v-model="localMember.group"
></q-input>
></q-select>
<q-select
class="q-ml-md col-5"
:label="$t('responsible')"
@@ -118,6 +123,9 @@ const props = defineProps({
responsibles: {
type: Object as PropType<Members>,
},
group: {
type: Array,
},
});
const emit = defineEmits(['update']);