From 7fa92966087ec4c1b57b054d4ccccf395ba2da75 Mon Sep 17 00:00:00 2001 From: OzoneGrif Date: Thu, 27 Feb 2020 23:35:14 +0100 Subject: Swapping gallery title and current item Co-Authored-By: Notkea --- viewer/src/components/LdTitle.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'viewer') 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 { } generateTitle(): string { - if (this.currentItem?.title) return `${this.galleryTitle} • ${this.currentItem.title}`; + if (this.currentItem?.title) return `${this.currentItem.title} • ${this.galleryTitle}`; return this.galleryTitle; } } -- cgit v1.2.3