This commit is contained in:
2026-01-23 05:21:27 +02:00
parent 5245598fd6
commit d71ab0ce5b
+2 -2
View File
@@ -45,10 +45,10 @@ export class DatePicker {
}, ... opts };
this.conf = {
weekdays: this.widget.weekdays[0].split(',').map(function(val) {
weekdays: Ut.objVal(this.widget.weekdays).split(',').map(function(val) {
return val.trim();
}),
months: this.widget.months[0].split(',').map(function(val) {
months: Ut.objVal(this.widget.months).split(',').map(function(val) {
return val.trim();
})
};