aboutsummaryrefslogtreecommitdiff
path: root/viewer/src/views/GalleryImage.vue
diff options
context:
space:
mode:
authorZero~Informatique2019-12-22 07:40:55 +0100
committerZero~Informatique2019-12-22 07:40:55 +0100
commitdc251fffc2998f1cf4f8e9631928c4b92ac0d90e (patch)
tree2d0fbf73d63ce2c1f02bde7385688c45eb2a260a /viewer/src/views/GalleryImage.vue
parent65465dd7d76b5729b62e39711004529e8d444241 (diff)
downloadldgallery-dc251fffc2998f1cf4f8e9631928c4b92ac0d90e.tar.gz
viewer: Implemented the search by tags. Pushed the special urls to ENV.
Diffstat (limited to 'viewer/src/views/GalleryImage.vue')
-rw-r--r--viewer/src/views/GalleryImage.vue2
1 files changed, 1 insertions, 1 deletions
diff --git a/viewer/src/views/GalleryImage.vue b/viewer/src/views/GalleryImage.vue
index 07f8cc8..04d29d9 100644
--- a/viewer/src/views/GalleryImage.vue
+++ b/viewer/src/views/GalleryImage.vue
@@ -13,7 +13,7 @@ export default class GalleryImage extends Vue {
13 @Prop({ required: true }) readonly image!: Gallery.Image; 13 @Prop({ required: true }) readonly image!: Gallery.Image;
14 14
15 get imageSrc() { 15 get imageSrc() {
16 return `/gallery${this.image.path}`; 16 return `${process.env.VUE_APP_DATA_URL}${this.image.path}`;
17 } 17 }
18} 18}
19</script> 19</script>