aboutsummaryrefslogtreecommitdiff
path: root/viewer/src/views/Gallery.vue
diff options
context:
space:
mode:
Diffstat (limited to 'viewer/src/views/Gallery.vue')
-rw-r--r--viewer/src/views/Gallery.vue2
1 files changed, 1 insertions, 1 deletions
diff --git a/viewer/src/views/Gallery.vue b/viewer/src/views/Gallery.vue
index 3625838..55b93db 100644
--- a/viewer/src/views/Gallery.vue
+++ b/viewer/src/views/Gallery.vue
@@ -44,7 +44,7 @@ export default class Root extends Vue {
44 return null; 44 return null;
45 } 45 }
46 46
47 private checkType(type: string) { 47 private checkType(type: string): boolean {
48 return (this.currentItem && this.currentItem.properties.type === type) || false; 48 return (this.currentItem && this.currentItem.properties.type === type) || false;
49 } 49 }
50} 50}