UX: Normalize mobile navigation toolbar titles

This commit is contained in:
Michael Mayer 2022-05-27 22:16:35 +02:00
parent 4201c7d2a6
commit fecd247d21

View file

@ -44,7 +44,6 @@ import { config, session } from "./session";
const c = window.__CONFIG__;
const siteTitle = c.siteTitle ? c.siteTitle : c.name;
const aboutTitle = c.edition ? c.edition : siteTitle;
export default [
{
@ -56,19 +55,19 @@ export default [
name: "about",
path: "/about",
component: About,
meta: { title: aboutTitle, auth: false },
meta: { title: siteTitle, auth: false },
},
{
name: "license",
path: "/about/license",
component: License,
meta: { title: aboutTitle, auth: false },
meta: { title: siteTitle, auth: false },
},
{
name: "feedback",
path: "/feedback",
component: Feedback,
meta: { title: aboutTitle, auth: true },
meta: { title: siteTitle, auth: true },
},
{
name: "help",