From 2f0ae6d1445f890c247b6687658597eb8cea29c5 Mon Sep 17 00:00:00 2001 From: Michael Mayer Date: Thu, 15 Jul 2021 20:17:38 +0200 Subject: [PATCH] Frontend: Add page title for album page in routes.js --- frontend/src/routes.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/routes.js b/frontend/src/routes.js index 6852a692e..4f48bbb17 100644 --- a/frontend/src/routes.js +++ b/frontend/src/routes.js @@ -138,7 +138,7 @@ export default [ name: "album", path: "/albums/:uid/:slug", component: AlbumPhotos, - meta: { auth: true }, + meta: { title: $gettext("Albums"), auth: true }, }, { name: "calendar",