aboutsummaryrefslogtreecommitdiff
path: root/viewer
diff options
context:
space:
mode:
Diffstat (limited to 'viewer')
-rw-r--r--viewer/src/components/LdTitle.vue2
1 files changed, 1 insertions, 1 deletions
diff --git a/viewer/src/components/LdTitle.vue b/viewer/src/components/LdTitle.vue
index 2614c89..074008d 100644
--- a/viewer/src/components/LdTitle.vue
+++ b/viewer/src/components/LdTitle.vue
@@ -39,7 +39,7 @@ export default class LdTitle extends Vue {
39 } 39 }
40 40
41 generateTitle(): string { 41 generateTitle(): string {
42 if (this.currentItem?.title) return `${this.galleryTitle} • ${this.currentItem.title}`; 42 if (this.currentItem?.title) return `${this.currentItem.title} • ${this.galleryTitle}`;
43 return this.galleryTitle; 43 return this.galleryTitle;
44 } 44 }
45} 45}