diff options
author | pacien | 2022-11-06 20:23:11 +0100 |
---|---|---|
committer | GitHub | 2022-11-06 20:23:11 +0100 |
commit | bb3b0eae37a7214a3a4a6a1e4354e6f082adf15e (patch) | |
tree | 2e5436e819f8e93a1115a8142594ca80fd507bc1 /viewer/src/views/layout/top/LayoutTop.vue | |
parent | f864eeca506331c1dee2cd3f5f0df4fe806f303a (diff) | |
parent | cfbff75f78963e3d24326f731590e78a4d719e9e (diff) | |
download | ldgallery-bb3b0eae37a7214a3a4a6a1e4354e6f082adf15e.tar.gz |
Merge pull request #347 from ldgallery/p_viewer_download_button
viewer/command: add item download button
Diffstat (limited to 'viewer/src/views/layout/top/LayoutTop.vue')
-rw-r--r-- | viewer/src/views/layout/top/LayoutTop.vue | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/viewer/src/views/layout/top/LayoutTop.vue b/viewer/src/views/layout/top/LayoutTop.vue index b755c42..02c8b7b 100644 --- a/viewer/src/views/layout/top/LayoutTop.vue +++ b/viewer/src/views/layout/top/LayoutTop.vue | |||
@@ -18,8 +18,14 @@ | |||
18 | --> | 18 | --> |
19 | 19 | ||
20 | <template> | 20 | <template> |
21 | <div class="flex"> | 21 | <div |
22 | <LayoutCommand :current-item-path="galleryStore.currentItemPath" /> | 22 | v-if="galleryStore.currentItem" |
23 | class="flex" | ||
24 | > | ||
25 | <LayoutCommand | ||
26 | :current-item-path="galleryStore.currentItemPath" | ||
27 | :item="galleryStore.currentItem" | ||
28 | /> | ||
23 | <LayoutBreadcrumb | 29 | <LayoutBreadcrumb |
24 | :current-item-path="galleryStore.currentItemPath" | 30 | :current-item-path="galleryStore.currentItemPath" |
25 | :search-mode="uiStore.searchMode" | 31 | :search-mode="uiStore.searchMode" |