From 69dc0d20706ed41e5ecdbb77515066d8a7d7703b Mon Sep 17 00:00:00 2001 From: Zero~Informatique Date: Fri, 19 Jun 2020 22:12:03 +0200 Subject: viewer: code update (no functional change) Types { [x: T]: R } updated to Record Methods in template updated to getters (computed in VueJS), which are reactive and cached Code formatting --- viewer/src/views/PanelLeft.vue | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'viewer/src/views/PanelLeft.vue') 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 @@ :show-category="$galleryStore.tagsCategories.length > 1" :search-filters.sync="searchFilters" :tags-index="category.index" - :current-tags="currentTags()" + :current-tags="currentTags" /> @@ -72,7 +72,7 @@ export default class PanelLeft extends Vue { return query; } - currentTags() { + get currentTags() { return this.$galleryStore.currentItem?.tags ?? []; } -- cgit v1.2.3