Update admin view to include created date and last modified information
Jenkins Production Deployment

This commit is contained in:
2025-05-29 13:32:20 +02:00
parent 2d09046976
commit a2ef25ad34
5 changed files with 39 additions and 7 deletions
+2 -1
View File
@@ -57,7 +57,8 @@ export class AdminComponent implements OnInit {
...event,
startDateTime: new Date(event.startDateTime),
endDateTime: new Date(event.endDateTime),
createdDate: new Date(event.createdDate)
createdDate: new Date(event.createdDate),
lastModifiedDate: new Date(event.lastModifiedDate)
});
}
}