From c65cef2327066b792d3ce531473b1344d69d3a32 Mon Sep 17 00:00:00 2001 From: Ben RUBSON <6764151+benrubson@users.noreply.github.com> Date: Fri, 17 Jul 2020 22:07:42 +0200 Subject: [PATCH] Branding: Use AppTitle as document title (#26425) * Branding: Use AppTitle as document title * Missing Branding include --- public/app/core/components/Login/LoginPage.tsx | 2 ++ 1 file changed, 2 insertions(+) diff --git a/public/app/core/components/Login/LoginPage.tsx b/public/app/core/components/Login/LoginPage.tsx index 84fc6d58985..f485ce79ee5 100644 --- a/public/app/core/components/Login/LoginPage.tsx +++ b/public/app/core/components/Login/LoginPage.tsx @@ -8,6 +8,7 @@ import { LoginServiceButtons } from './LoginServiceButtons'; import LoginCtrl from './LoginCtrl'; import { LoginForm } from './LoginForm'; import { ChangePassword } from '../ForgottenPassword/ChangePassword'; +import { Branding } from 'app/core/components/Branding/Branding'; import { HorizontalGroup, LinkButton } from '@grafana/ui'; import { LoginLayout, InnerBox } from './LoginLayout'; @@ -17,6 +18,7 @@ const forgottenPasswordStyles = css` `; export const LoginPage: FC = () => { + document.title = Branding.AppTitle; return (