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 91f244d commit bd1b923Copy full SHA for bd1b923
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">
@@ -76,7 +76,7 @@ export default {
76
id: 'application/pdf',
77
},
78
],
79
- newValue: [],
+ newValue: '',
80
}
81
82
props: {
0 commit comments