Fix incorrect value format in Et2Date

This commit is contained in:
nathan 2022-02-16 10:52:37 -07:00
parent 7cc9006e19
commit c81183f5f6

View File

@ -298,7 +298,7 @@ export class Et2Date extends Et2InputWidget(LitFlatpickr)
this.altFormat = this.egw().preference("dateformat") || "Y-m-d";
this.altInput = true;
this.allowInput = true;
this.dateFormat = "Y-m-d\T00:00:00\Z";
this.dateFormat = "Y-m-dT00:00:00\\Z";
this.weekNumbers = true;
}