fix wrong input field to select clos #25
This commit is contained in:
@@ -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']);
|
||||
|
||||
Reference in New Issue
Block a user