mirror of
https://github.com/wekan/wekan.git
synced 2025-12-24 03:10:12 +01:00
Added missing quotes to Fix Due Date Problem in Non-English Numbers.
Thanks to xet7 ! Fixes https://github.com/wekan/wekan/pull/5774, fixes #5752
This commit is contained in:
parent
0520129a40
commit
c0a9780f80
1 changed files with 1 additions and 1 deletions
|
|
@ -113,7 +113,7 @@ export class DatePicker extends BlazeComponent {
|
|||
const newTime = moment(time, adjustedTimeFormat(), true);
|
||||
const dateValue = Utils.normalizeDigits(evt.target.date.value);
|
||||
const newDate = moment(dateValue, 'L', true);
|
||||
const dateString = ${dateValue} ${time};
|
||||
const dateString = `${dateValue} ${time}`;
|
||||
const newCompleteDate = moment(
|
||||
dateString,
|
||||
`L ${adjustedTimeFormat()}`,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue