Nettoyage de date

Pas de "T" entre date et heure
This commit is contained in:
Vincent Vandemeulebrouck 2023-10-03 21:03:19 +02:00
parent 928c7bbcfe
commit 7dfba94a11
2 changed files with 1 additions and 6 deletions

View File

@ -114,7 +114,7 @@ export class DialogChronologie extends Dialog {
heure: RdDTimestamp.definition(this.html.find("form.rdddialogchrono :input[name='chronologie.heure']").val()),
minute: this.html.find("form.rdddialogchrono :input[name='chronologie.minute']").val(),
},
dateReel: this.html.find("form.rdddialogchrono :input[name='dateReel']").val()
dateReel: this.html.find("form.rdddialogchrono :input[name='dateReel']").val().replace('T', ' ')
}
}

View File

@ -106,11 +106,6 @@ export class RdDCalendrier extends Application {
return buttons
}
/*async maximize() {
await super.maximize()
this.render(true)
}*/
async close() { }
async onUpdateSetting(setting, update, options, id) {