summaryrefslogtreecommitdiffstats
path: root/apps/files/src
diff options
context:
space:
mode:
authorJohn Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>2020-01-15 10:55:36 +0100
committerJohn Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>2020-01-15 11:04:53 +0100
commit1c984645f7e9a60f1144e96e88000cad90cf76b9 (patch)
tree3b264e7b4a7200bf476bbffd6bc070c187a12227 /apps/files/src
parentad1aec3085aa4d9da6470a89bc73b8406894afa9 (diff)
downloadnextcloud-server-1c984645f7e9a60f1144e96e88000cad90cf76b9.tar.gz
nextcloud-server-1c984645f7e9a60f1144e96e88000cad90cf76b9.zip
Close after click
Signed-off-by: John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>
Diffstat (limited to 'apps/files/src')
-rw-r--r--apps/files/src/views/Sidebar.vue8
1 files changed, 6 insertions, 2 deletions
diff --git a/apps/files/src/views/Sidebar.vue b/apps/files/src/views/Sidebar.vue
index 9c2bab960c4..81c4e728380 100644
--- a/apps/files/src/views/Sidebar.vue
+++ b/apps/files/src/views/Sidebar.vue
@@ -42,8 +42,12 @@
<template v-if="fileInfo" #secondary-actions>
<!-- TODO: create proper api for apps to register actions
And inject themselves here. -->
- <ActionButton v-if="isSystemTagsEnabled" icon="icon-tag" @click="toggleTags">
- {{ t('files_sharing', 'Manage tags') }}
+ <ActionButton
+ v-if="isSystemTagsEnabled"
+ :close-after-click="true"
+ icon="icon-tag"
+ @click="toggleTags">
+ {{ t('files_sharing', 'Tags') }}
</ActionButton>
</template>