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
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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;
};
}