From e4e2b051eaa0a7dbbf0ed206d1a862b0adefa11f Mon Sep 17 00:00:00 2001 From: Varun Patil Date: Thu, 27 Oct 2022 00:18:29 -0700 Subject: [PATCH] Fix album title --- src/components/top-matter/AlbumTopMatter.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/top-matter/AlbumTopMatter.vue b/src/components/top-matter/AlbumTopMatter.vue index bae889a3..cbbbb278 100644 --- a/src/components/top-matter/AlbumTopMatter.vue +++ b/src/components/top-matter/AlbumTopMatter.vue @@ -77,7 +77,7 @@ export default class AlbumTopMatter extends Mixins(GlobalMixin, UserConfig) { } createMatter() { - this.name = this.$route.params.id || this.t('memories', 'Albums'); + this.name = this.$route.params.name || this.t('memories', 'Albums'); } back() {