From 593e8ae17cdfdf7036a748cd5fec239a3e4e665d Mon Sep 17 00:00:00 2001 From: owensmallwood Date: Wed, 18 Jan 2023 11:57:34 -0600 Subject: [PATCH] PublicDashboards: Page to request access to protected pubdash (#61329) Adds page to request pubdash access via email --- public/app/core/components/Branding/types.ts | 23 ++++++++++--------- .../app/core/components/Login/LoginLayout.tsx | 2 +- 2 files changed, 13 insertions(+), 12 deletions(-) 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}
-