mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-07 16:44:20 +01:00
Fix gantt chart couldn't load data
broken by 2066523
.
Loading caused 'Exception "t is undefined" while handling JSON response from ....' deep inside dhtmlx-gantt
This commit is contained in:
parent
a94038163c
commit
da1b1f6999
@ -660,7 +660,11 @@ export class Et2Date extends Et2InputWidget(FormControlMixin(LitFlatpickr))
|
||||
{
|
||||
return flatpickr.formatDate(<Date>this.defaultDate, this.getOptions().dateFormat);
|
||||
}
|
||||
return this._inputNode?.value + "Z" || '';
|
||||
if(typeof egwIsMobile == "function" && egwIsMobile())
|
||||
{
|
||||
return this._inputNode?.value + "Z" || "";
|
||||
}
|
||||
return this._inputNode?.value || '';
|
||||
}
|
||||
let value = this._inputElement.value;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user