Skip to content

Commit

Permalink
Fix broken title when looking a language
Browse files Browse the repository at this point in the history
  • Loading branch information
Hans5958 committed Feb 26, 2024
1 parent d8c5113 commit 8fa1df0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/layouts/Display.astro
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ let { version, locales, lang } = Astro.props
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
<meta name="viewport" content="width=device-width" />
<meta name="generator" content={Astro.generator} />
<title>{ version }: { lang }</title>
<title>{ `${version}: ${lang}` }</title>
</head>
<body class="p-2">

Expand Down

0 comments on commit 8fa1df0

Please sign in to comment.