diff --git a/public/app/core/components/Branding/types.ts b/public/app/core/components/Branding/types.ts index cddfcb6d78b..ed7c6bde557 100644 --- a/public/app/core/components/Branding/types.ts +++ b/public/app/core/components/Branding/types.ts @@ -1,15 +1,16 @@ import { FooterLink } from '../Footer/Footer'; export interface BrandingSettings { - footerLinks: FooterLink[] | null; - appTitle: string; - loginSubtitle: string; - loginTitle: string; - loginLogo: string; - loginBackground: string; - loginBoxBackground: string; - menuLogo: string; - favIcon: string; - loadingLogo: string; - appleTouchIcon: string; + footerLinks?: FooterLink[] | null; + hideFooter?: boolean; + appTitle?: string; + loginSubtitle?: string; + loginTitle?: string; + loginLogo?: string; + loginBackground?: string; + loginBoxBackground?: string; + menuLogo?: string; + favIcon?: string; + loadingLogo?: string; + appleTouchIcon?: string; } diff --git a/public/app/core/components/Login/LoginLayout.tsx b/public/app/core/components/Login/LoginLayout.tsx index a657683560a..b4ca25ce50c 100644 --- a/public/app/core/components/Login/LoginLayout.tsx +++ b/public/app/core/components/Login/LoginLayout.tsx @@ -45,7 +45,7 @@ export const LoginLayout = ({ children, branding }: React.PropsWithChildren
{children}
-