From 3e1b7eddc429ca500f97aa333a98de0b51e4e71c Mon Sep 17 00:00:00 2001 From: Michael Mayer Date: Sun, 13 Dec 2020 00:24:00 +0100 Subject: [PATCH] Sharing: Use author as page title in albums Signed-off-by: Michael Mayer --- frontend/src/share/routes.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/share/routes.js b/frontend/src/share/routes.js index 98874a579..904249eeb 100644 --- a/frontend/src/share/routes.js +++ b/frontend/src/share/routes.js @@ -21,7 +21,7 @@ export default [ name: "album", path: "/s/:token/:uid", component: AlbumPhotos, - meta: {title: $gettext("Albums"), auth: true}, + meta: {title: c.siteAuthor, auth: true}, }, { path: "*", redirect: {name: "albums"},