1
0
mirror of https://github.com/Radarr/Radarr.git synced 2026-04-24 22:35:49 -04:00

New: Instance name for Page Title

This commit is contained in:
Qstick
2022-05-12 19:06:14 -05:00
committed by Robin Dadswell
parent 39ad315e73
commit a37fc0dc1f
3 changed files with 3 additions and 2 deletions
+1 -1
View File
@@ -14,7 +14,7 @@ function PageContent(props) {
return (
<ErrorBoundary errorComponent={PageContentError}>
<DocumentTitle title={title ? `${title} - Radarr` : 'Radarr'}>
<DocumentTitle title={title ? `${title} - ${window.Radarr.instanceName}` : window.Radarr.instanceName}>
<div className={className}>
{children}
</div>