fix: update

This commit is contained in:
xiaoxian521
2021-11-10 09:00:39 +08:00
parent fd4706f2d3
commit 753491a7eb
2 changed files with 5 additions and 5 deletions

View File

@@ -37,9 +37,9 @@ export const injectResponsiveStorage = (app: App, config: ServerConfigs) => {
sets: {
type: Object,
default: Storage.getData(undefined, "sets") ?? {
grey: config.Grey,
weak: config.Weak,
hideTabs: config.HideTabs
grey: config.Grey ?? false,
weak: config.Weak ?? false,
hideTabs: config.HideTabs ?? false
}
}
});