Fix issue-100
All checks were successful
Java CI with Maven / test (push) Successful in 1m5s
Java CI with Maven / build-and-push-frontend (push) Successful in 2m21s
Java CI with Maven / build-and-push-backend (push) Successful in 1m22s

This commit is contained in:
Sebastian Böckelmann 2024-03-13 19:00:30 +01:00
parent a66a72eb68
commit 8e41085008

View File

@ -169,9 +169,9 @@ export class ForgottenTaskStartDialogComponent implements OnInit{
}
register() {
this.scheduleService.schedulesTaskIDForgottenPost(this.events[0].meta.taskID, {
startTime: moment(this.events[0].start).format('YYYY-MM-DDTHH:mm:ss.SSSZ'),
endTime: moment(this.events[0].end).format('YYYY-MM-DDTHH:mm:ss.SSSZ'),
this.scheduleService.schedulesTaskIDForgottenPost(this.events[this.events.length-1].meta.taskID, {
startTime: moment(this.events[this.events.length-1].start).format('YYYY-MM-DDTHH:mm:ss.SSSZ'),
endTime: moment(this.events[this.events.length-1].end).format('YYYY-MM-DDTHH:mm:ss.SSSZ'),
}).subscribe({
next: resp => {
this.router.navigateByUrl("/");