[AAE-6811] Load custom theme (#2402)

This commit is contained in:
Bartosz Sekuła
2022-01-18 10:15:42 +01:00
committed by GitHub
parent 652cf1762b
commit 37acccd6d6
5 changed files with 21 additions and 1 deletions

View File

@@ -32,6 +32,7 @@ export const getHeaderColor = createSelector(selectApp, (state) => state.headerC
export const getHeaderTextColor = createSelector(selectApp, (state) => state.headerTextColor);
export const getAppName = createSelector(selectApp, (state) => state.appName);
export const getLogoPath = createSelector(selectApp, (state) => state.logoPath);
export const getCustomCssPath = createSelector(selectApp, (state) => state.customCssPath);
export const getHeaderImagePath = createSelector(selectApp, (state) => state.headerImagePath);
export const getUserProfile = createSelector(selectApp, (state) => state.user);
export const getCurrentFolder = createSelector(selectApp, (state) => state.navigation.currentFolder);

View File

@@ -31,6 +31,7 @@ export interface AppState {
headerColor: string;
headerTextColor: string;
logoPath: string;
customCssPath: string;
headerImagePath: string;
sharedUrl: string;
currentNodeVersion: VersionEntry;