diff options
| author | Alexander Tumin <iamtakingiteasy@eientei.org> | 2022-06-05 17:10:44 +0300 |
|---|---|---|
| committer | Alexander Tumin <iamtakingiteasy@eientei.org> | 2022-08-11 16:38:24 +0300 |
| commit | 3e7e31d4a98f4cbdfdd3c92d952e58616c027beb (patch) | |
| tree | 94537063d88c18333d04f125de5e5b2f09c818a3 /src/boot | |
| parent | 6b80ce122f18633b11fa43ec19ee74aeb5578f6b (diff) | |
Allow column width configuration
Group column configuration in settings
Column width configuration: do not act on defaults
Diffstat (limited to 'src/boot')
| -rw-r--r-- | src/boot/after_store.js | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/boot/after_store.js b/src/boot/after_store.js index 908d905a..38b5f38e 100644 --- a/src/boot/after_store.js +++ b/src/boot/after_store.js @@ -12,7 +12,7 @@ import { windowWidth, windowHeight } from '../services/window_utils/window_utils import { getOrCreateApp, getClientToken } from '../services/new_api/oauth.js' import backendInteractorService from '../services/backend_interactor_service/backend_interactor_service.js' import { CURRENT_VERSION } from '../services/theme_data/theme_data.service.js' -import { applyTheme } from '../services/style_setter/style_setter.js' +import { applyTheme, applyConfig } from '../services/style_setter/style_setter.js' import FaviconService from '../services/favicon_service/favicon_service.js' let staticInitialResults = null @@ -360,6 +360,8 @@ const afterStoreSetup = async ({ store, i18n }) => { console.error('Failed to load any theme!') } + applyConfig(store.state.config) + // Now we can try getting the server settings and logging in // Most of these are preloaded into the index.html so blocking is minimized await Promise.all([ |
