aboutsummaryrefslogtreecommitdiff
path: root/viewer/src/views/layout/top/LayoutTop.vue
diff options
context:
space:
mode:
authorpacien2022-11-06 20:23:11 +0100
committerGitHub2022-11-06 20:23:11 +0100
commitbb3b0eae37a7214a3a4a6a1e4354e6f082adf15e (patch)
tree2e5436e819f8e93a1115a8142594ca80fd507bc1 /viewer/src/views/layout/top/LayoutTop.vue
parentf864eeca506331c1dee2cd3f5f0df4fe806f303a (diff)
parentcfbff75f78963e3d24326f731590e78a4d719e9e (diff)
downloadldgallery-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.vue10
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"