diff --git a/api/js/etemplate/Et2Date/Et2Date.ts b/api/js/etemplate/Et2Date/Et2Date.ts index 7ccca3e3d2..c3b3d4e087 100644 --- a/api/js/etemplate/Et2Date/Et2Date.ts +++ b/api/js/etemplate/Et2Date/Et2Date.ts @@ -660,7 +660,11 @@ export class Et2Date extends Et2InputWidget(FormControlMixin(LitFlatpickr)) { return flatpickr.formatDate(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;