diff options
Diffstat (limited to 'apps/workflowengine/src')
-rw-r--r-- | apps/workflowengine/src/components/Checks/FileSystemTag.vue | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/apps/workflowengine/src/components/Checks/FileSystemTag.vue b/apps/workflowengine/src/components/Checks/FileSystemTag.vue index 1c99be3816d..2d59c8f36d4 100644 --- a/apps/workflowengine/src/components/Checks/FileSystemTag.vue +++ b/apps/workflowengine/src/components/Checks/FileSystemTag.vue @@ -21,18 +21,18 @@ --> <template> - <MultiselectTags v-model="newValue" + <NcSelectTags v-model="newValue" :multiple="false" @input="update" /> </template> <script> -import MultiselectTags from '@nextcloud/vue/dist/Components/NcMultiselectTags.js' +import NcSelectTags from '@nextcloud/vue/dist/Components/NcSelectTags.js' export default { name: 'FileSystemTag', components: { - MultiselectTags, + NcSelectTags, }, props: { value: { @@ -56,7 +56,7 @@ export default { methods: { updateValue() { if (this.value !== '') { - this.newValue = this.value + this.newValue = parseInt(this.value) } else { this.newValue = null } |