mirror of
https://github.com/hay-kot/mealie.git
synced 2025-08-22 06:23:34 -07:00
Fix First day of week mapping
This commit is contained in:
parent
29fbb2d083
commit
c406ee5b64
1 changed files with 2 additions and 1 deletions
|
@ -20,7 +20,8 @@ export default {
|
||||||
|
|
||||||
methods: {
|
methods: {
|
||||||
async getOptions() {
|
async getOptions() {
|
||||||
this.firstDayOfWeek = await api.siteSettings.get().firstDayOfWeek;
|
const settings = await api.siteSettings.get();
|
||||||
|
this.firstDayOfWeek = settings.firstDayOfWeek;
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue