aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorskjnldsv <skjnldsv@protonmail.com>2025-02-14 16:10:43 +0100
committerbackportbot[bot] <backportbot[bot]@users.noreply.github.com>2025-02-18 16:42:00 +0000
commit862644ce1f141159ee7ed40dfab3f2360d7399f4 (patch)
treed82f640b17f8a4663d8e3894a6890d32501fe4c6
parent5be019ff2a6a4d5d9de5e7f5062d79fae4294179 (diff)
downloadnextcloud-server-862644ce1f141159ee7ed40dfab3f2360d7399f4.tar.gz
nextcloud-server-862644ce1f141159ee7ed40dfab3f2360d7399f4.zip
fix(systemtags): do not hide if no tags
Signed-off-by: skjnldsv <skjnldsv@protonmail.com>
-rw-r--r--apps/systemtags/src/components/SystemTags.vue1
1 files changed, 0 insertions, 1 deletions
diff --git a/apps/systemtags/src/components/SystemTags.vue b/apps/systemtags/src/components/SystemTags.vue
index f65a68dfd90..30a1a69ff72 100644
--- a/apps/systemtags/src/components/SystemTags.vue
+++ b/apps/systemtags/src/components/SystemTags.vue
@@ -117,7 +117,6 @@ export default Vue.extend({
this.loadingTags = true
try {
this.selectedTags = await fetchTagsForFile(this.fileId)
- this.$emit('has-tags', this.selectedTags.length > 0)
} catch (error) {
showError(t('systemtags', 'Failed to load selected tags'))
}