Add explicit return to GetLoginSubTitle (#33946)

This commit is contained in:
Alex Khomenko
2021-05-11 19:52:16 +03:00
committed by GitHub
parent e13f15f646
commit 60c32dc96a

View File

@@ -52,7 +52,7 @@ export class Branding {
static LoginBoxBackground = LoginBoxBackground;
static AppTitle = 'Grafana';
static LoginTitle = 'Welcome to Grafana';
static GetLoginSubTitle = () => {
static GetLoginSubTitle = (): null | string => {
return null;
};
}