diff options
author | pacien | 2022-10-25 18:34:14 +0200 |
---|---|---|
committer | GitHub | 2022-10-25 18:34:14 +0200 |
commit | ffd5d78e9b3fc341e36467bd43bd6d22373de4ed (patch) | |
tree | 11d9472981b2ecddd21beae81e2ecde08e495f10 /viewer/src/views | |
parent | 39d20f33ce4ac0e814922bc17aafa348d9788ba8 (diff) | |
parent | 18bbe9b32ecd809bc46a80f5c21c5cb3d4b4b774 (diff) | |
download | ldgallery-ffd5d78e9b3fc341e36467bd43bd6d22373de4ed.tar.gz |
Merge pull request #334 from ldgallery/oz-fix-tab-hints-on-closed-left-panel
viewer: hints still appearing for tags when search pane is closed
Diffstat (limited to 'viewer/src/views')
-rw-r--r-- | viewer/src/views/MainLayout.vue | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/viewer/src/views/MainLayout.vue b/viewer/src/views/MainLayout.vue index d8b3300..30bfe97 100644 --- a/viewer/src/views/MainLayout.vue +++ b/viewer/src/views/MainLayout.vue | |||
@@ -26,7 +26,10 @@ | |||
26 | /> | 26 | /> |
27 | <template v-else-if="galleryStore.config && galleryStore.galleryIndex"> | 27 | <template v-else-if="galleryStore.config && galleryStore.galleryIndex"> |
28 | <LayoutTop :class="[$style.layout, $style.layoutTop]" /> | 28 | <LayoutTop :class="[$style.layout, $style.layoutTop]" /> |
29 | <LayoutLeft :class="[$style.layout, $style.layoutLeft]" /> | 29 | <LayoutLeft |
30 | v-show="!uiStore.fullWidth" | ||
31 | :class="[$style.layout, $style.layoutLeft]" | ||
32 | /> | ||
30 | <router-view | 33 | <router-view |
31 | ref="content" | 34 | ref="content" |
32 | :class="[$style.layout, $style.layoutContent]" | 35 | :class="[$style.layout, $style.layoutContent]" |