diff options
Diffstat (limited to 'viewer/src/views/PanelLeft.vue')
-rw-r--r-- | viewer/src/views/PanelLeft.vue | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/viewer/src/views/PanelLeft.vue b/viewer/src/views/PanelLeft.vue index e3821a8..1d49648 100644 --- a/viewer/src/views/PanelLeft.vue +++ b/viewer/src/views/PanelLeft.vue | |||
@@ -34,7 +34,7 @@ | |||
34 | :show-category="$galleryStore.tagsCategories.length > 1" | 34 | :show-category="$galleryStore.tagsCategories.length > 1" |
35 | :search-filters.sync="searchFilters" | 35 | :search-filters.sync="searchFilters" |
36 | :tags-index="category.index" | 36 | :tags-index="category.index" |
37 | :current-tags="currentTags()" | 37 | :current-tags="currentTags" |
38 | /> | 38 | /> |
39 | </div> | 39 | </div> |
40 | </div> | 40 | </div> |
@@ -72,7 +72,7 @@ export default class PanelLeft extends Vue { | |||
72 | return query; | 72 | return query; |
73 | } | 73 | } |
74 | 74 | ||
75 | currentTags() { | 75 | get currentTags() { |
76 | return this.$galleryStore.currentItem?.tags ?? []; | 76 | return this.$galleryStore.currentItem?.tags ?? []; |
77 | } | 77 | } |
78 | 78 | ||