{{item.path}}
@@ -34,6 +41,8 @@ import { Component, Vue, Prop } from "vue-property-decorator";
export default class GalleryThumbnail extends Vue {
@Prop({ required: true }) readonly item!: Gallery.Item;
+ loading: boolean = false;
+
get pictureSrc() {
return `${process.env.VUE_APP_DATA_URL}${this.item.thumbnail}`;
}
@@ -41,8 +50,29 @@ export default class GalleryThumbnail extends Vue {
diff --git a/viewer/src/views/MainLayout.vue b/viewer/src/views/MainLayout.vue
index 5308205..de6f8af 100644
--- a/viewer/src/views/MainLayout.vue
+++ b/viewer/src/views/MainLayout.vue
@@ -21,7 +21,7 @@
@@ -93,6 +93,7 @@ html {
top: var(--layout-top);
left: var(--layout-left);
z-index: 3;
+ overflow-x: hidden;
}
}
.fullscreen {
--
cgit v1.2.3