mirror of
https://github.com/nextcloud/server.git
synced 2026-05-28 04:32:30 -04:00
fix: properly set value in FileMimeType
Signed-off-by: Arthur Schiwon <blizzz@arthur-schiwon.de>
This commit is contained in:
parent
04e78dbc77
commit
7afdce6e9d
1 changed files with 3 additions and 3 deletions
|
|
@ -5,7 +5,7 @@
|
|||
<template>
|
||||
<div>
|
||||
<NcSelect
|
||||
:model-value="newValue"
|
||||
:model-value="currentValue"
|
||||
:placeholder="t('workflowengine', 'Select a file type')"
|
||||
label="label"
|
||||
:options="options"
|
||||
|
|
@ -31,7 +31,7 @@
|
|||
</template>
|
||||
</NcSelect>
|
||||
<input v-if="!isPredefined"
|
||||
:model-value="newValue"
|
||||
:value="currentValue.id"
|
||||
type="text"
|
||||
:placeholder="t('workflowengine', 'e.g. httpd/unix-directory')"
|
||||
@input="updateCustom">
|
||||
|
|
@ -76,7 +76,7 @@ export default {
|
|||
id: 'application/pdf',
|
||||
},
|
||||
],
|
||||
newValue: [],
|
||||
newValue: '',
|
||||
}
|
||||
},
|
||||
props: {
|
||||
|
|
|
|||
Loading…
Reference in a new issue