diff options
Diffstat (limited to 'viewer/src/views/MainLayout.vue')
-rw-r--r-- | viewer/src/views/MainLayout.vue | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/viewer/src/views/MainLayout.vue b/viewer/src/views/MainLayout.vue index 21c9cb6..d9ae954 100644 --- a/viewer/src/views/MainLayout.vue +++ b/viewer/src/views/MainLayout.vue | |||
@@ -70,12 +70,12 @@ export default class MainLayout extends Vue { | |||
70 | } | 70 | } |
71 | 71 | ||
72 | get isReady() { | 72 | get isReady() { |
73 | return !this.isLoading && this.$galleryStore.currentPath !== null; | 73 | return !this.isLoading && this.$galleryStore.config && this.$galleryStore.currentPath !== null; |
74 | } | 74 | } |
75 | 75 | ||
76 | displayError(reason: any) { | 76 | displayError(reason: any) { |
77 | this.$buefy.snackbar.open({ | 77 | this.$buefy.snackbar.open({ |
78 | message: `Error ${reason}`, | 78 | message: `${reason}`, |
79 | actionText: "Retry", | 79 | actionText: "Retry", |
80 | position: "is-top", | 80 | position: "is-top", |
81 | type: "is-danger", | 81 | type: "is-danger", |