Fix broken search for tags in workflow checks

Signed-off-by: Joas Schilling <coding@schilljs.com>
pull/36754/head
Joas Schilling 3 years ago
parent 4908d87c24
commit 5c432ffffa
No known key found for this signature in database
GPG Key ID: 74434EFE0D2E2205
  1. 6
      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: {

Loading…
Cancel
Save