From 8899eb4894fb75ffd4dccd98415895e46b516d05 Mon Sep 17 00:00:00 2001 From: Michael Mayer Date: Sat, 4 Jul 2020 08:17:42 +0200 Subject: [PATCH] Frontend: Set library page title Signed-off-by: Michael Mayer --- frontend/src/routes.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/frontend/src/routes.js b/frontend/src/routes.js index 3a4391cbb..b65ba76a8 100644 --- a/frontend/src/routes.js +++ b/frontend/src/routes.js @@ -238,21 +238,21 @@ export default [ name: "library_logs", path: "/library/logs", component: Library, - meta: {auth: true, background: "application-light"}, + meta: {title: $gettext("Library"), auth: true, background: "application-light"}, props: {tab: 2}, }, { name: "library_import", path: "/library/import", component: Library, - meta: {auth: true, background: "application-light"}, + meta: {title: $gettext("Library"), auth: true, background: "application-light"}, props: {tab: 1}, }, { name: "library", path: "/library", component: Library, - meta: {auth: true, background: "application-light"}, + meta: {title: $gettext("Library"), auth: true, background: "application-light"}, props: {tab: 0}, }, {