customisable header image url (#1449)

This commit is contained in:
Denys Vuika
2020-05-06 14:17:42 +01:00
committed by GitHub
parent 9c3f3b5987
commit f6c1843b23
9 changed files with 37 additions and 7 deletions

View File

@@ -43,6 +43,11 @@ export const getLogoPath = createSelector(
state => state.logoPath
);
export const getHeaderImagePath = createSelector(
selectApp,
state => state.headerImagePath
);
export const getLanguagePickerState = createSelector(
selectApp,
state => state.languagePicker

View File

@@ -34,6 +34,7 @@ export interface AppState {
appName: string;
headerColor: string;
logoPath: string;
headerImagePath: string;
languagePicker: boolean;
sharedUrl: string;
selection: SelectionState;