fix wrong input field to select clos #25
This commit is contained in:
@@ -60,12 +60,17 @@
|
|||||||
filled
|
filled
|
||||||
v-model="localMember.email"
|
v-model="localMember.email"
|
||||||
></q-input>
|
></q-input>
|
||||||
<q-input
|
<q-select
|
||||||
class="q-ml-md col-5"
|
class="q-ml-md col-5"
|
||||||
:label="$t('group')"
|
:label="$t('group')"
|
||||||
|
:options="props.group"
|
||||||
filled
|
filled
|
||||||
|
emit-value
|
||||||
|
map-options
|
||||||
|
option-value="name"
|
||||||
|
option-label="name"
|
||||||
v-model="localMember.group"
|
v-model="localMember.group"
|
||||||
></q-input>
|
></q-select>
|
||||||
<q-select
|
<q-select
|
||||||
class="q-ml-md col-5"
|
class="q-ml-md col-5"
|
||||||
:label="$t('responsible')"
|
:label="$t('responsible')"
|
||||||
@@ -118,6 +123,9 @@ const props = defineProps({
|
|||||||
responsibles: {
|
responsibles: {
|
||||||
type: Object as PropType<Members>,
|
type: Object as PropType<Members>,
|
||||||
},
|
},
|
||||||
|
group: {
|
||||||
|
type: Array,
|
||||||
|
},
|
||||||
});
|
});
|
||||||
|
|
||||||
const emit = defineEmits(['update']);
|
const emit = defineEmits(['update']);
|
||||||
|
|||||||
Reference in New Issue
Block a user