mirror of
https://github.com/frappe/books.git
synced 2025-01-07 00:53:58 +00:00
fix: startup error : systemSettings is not single schema
This commit is contained in:
parent
ada4952107
commit
d5e38d6843
@ -16,6 +16,7 @@ export default class SystemSettings extends Doc {
|
||||
currency?: string;
|
||||
version?: string;
|
||||
instanceId?: string;
|
||||
darkMode?: boolean;
|
||||
|
||||
validations: ValidationMap = {
|
||||
displayPrecision(value: DocValue) {
|
||||
|
@ -135,9 +135,9 @@ export default defineComponent({
|
||||
},
|
||||
async mounted() {
|
||||
await this.setInitialScreen();
|
||||
const { darkMode } = await fyo.doc.getDoc('SystemSettings');
|
||||
setDarkMode(!!darkMode);
|
||||
this.darkMode = !!darkMode;
|
||||
const darkMode = !!fyo.singles.SystemSettings?.darkMode;
|
||||
setDarkMode(darkMode);
|
||||
this.darkMode = darkMode;
|
||||
},
|
||||
methods: {
|
||||
async setInitialScreen(): Promise<void> {
|
||||
|
Loading…
Reference in New Issue
Block a user