mirror of
https://github.com/wekan/wekan.git
synced 2026-01-03 16:18:49 +01:00
Merge pull request #3038 from marc1006/fix
Fix getStartDayOfWeek function
This commit is contained in:
commit
07c915ccf0
1 changed files with 2 additions and 1 deletions
|
|
@ -530,7 +530,8 @@ Users.helpers({
|
|||
|
||||
getStartDayOfWeek() {
|
||||
const profile = this.profile || {};
|
||||
return profile.startDayOfWeek || 1;
|
||||
// default is 'Monday' (1)
|
||||
return profile.startDayOfWeek ?? 1;
|
||||
},
|
||||
|
||||
getTemplatesBoardId() {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue