aboutsummaryrefslogtreecommitdiff
path: root/viewer/src/views/GallerySearch.vue
diff options
context:
space:
mode:
Diffstat (limited to 'viewer/src/views/GallerySearch.vue')
-rw-r--r--viewer/src/views/GallerySearch.vue4
1 files changed, 4 insertions, 0 deletions
diff --git a/viewer/src/views/GallerySearch.vue b/viewer/src/views/GallerySearch.vue
index 278bbe3..97c5c66 100644
--- a/viewer/src/views/GallerySearch.vue
+++ b/viewer/src/views/GallerySearch.vue
@@ -34,6 +34,10 @@ import { Component, Vue, Prop } from "vue-property-decorator";
34@Component 34@Component
35export default class GalleryPicture extends Vue { 35export default class GalleryPicture extends Vue {
36 @Prop({ required: true }) readonly items!: Gallery.Item[]; 36 @Prop({ required: true }) readonly items!: Gallery.Item[];
37
38 mounted() {
39 this.$uiStore.fullscreen = false;
40 }
37} 41}
38</script> 42</script>
39 43