mirror of
https://github.com/nextcloud/server.git
synced 2026-06-09 08:44:07 -04:00
Fix broken search for tags in workflow checks
Signed-off-by: Joas Schilling <coding@schilljs.com>
This commit is contained in:
parent
bbcfa69dd2
commit
6306eb7114
1 changed files with 3 additions and 3 deletions
|
|
@ -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…
Reference in a new issue