Change time format to 24 hours

This commit is contained in:
Peter Maquiran
2021-07-14 16:26:51 +01:00
parent c0fea28eee
commit a968538234
10 changed files with 22 additions and 22 deletions
@@ -338,7 +338,7 @@ export class NewEventPage implements OnInit {
restoreDatepickerData() {
if (this.postEvent) {
this.dateControlOccurrence = new FormControl(moment(this.postEvent.EventRecurrence.LastOccurrence, "DD MM YYYY hh:mm"))
this.dateControlOccurrence = new FormControl(moment(this.postEvent.EventRecurrence.LastOccurrence, "DD MM YYYY HH:mm"))
}
}