mirror of
https://github.com/grafana/grafana.git
synced 2025-02-12 08:35:43 -06:00
PublicDashboards: Page to request access to protected pubdash (#61329)
Adds page to request pubdash access via email
This commit is contained in:
parent
492bdbd585
commit
593e8ae17c
@ -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;
|
||||
}
|
||||
|
@ -45,7 +45,7 @@ export const LoginLayout = ({ children, branding }: React.PropsWithChildren<Logi
|
||||
</div>
|
||||
<div className={loginStyles.loginOuterBox}>{children}</div>
|
||||
</div>
|
||||
<Footer customLinks={branding?.footerLinks} />
|
||||
{branding?.hideFooter ? <></> : <Footer customLinks={branding?.footerLinks} />}
|
||||
</Branding.LoginBackground>
|
||||
);
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user