We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1bbf27b commit 9631930Copy full SHA for 9631930
1 file changed
apps/workflowengine/src/components/Checks/FileMimeType.vue
@@ -5,7 +5,7 @@
5
<template>
6
<div>
7
<NcSelect
8
- :model-value="newValue"
+ :model-value="currentValue"
9
:placeholder="t('workflowengine', 'Select a file type')"
10
label="label"
11
:options="options"
@@ -31,7 +31,7 @@
31
</template>
32
</NcSelect>
33
<input v-if="!isPredefined"
34
+ :value="currentValue.id"
35
type="text"
36
:placeholder="t('workflowengine', 'e.g. httpd/unix-directory')"
37
@input="updateCustom">
@@ -77,7 +77,7 @@ export default {
77
id: 'application/pdf',
78
},
79
],
80
- newValue: [],
+ newValue: '',
81
}
82
83
props: {
0 commit comments