Merge pull request 'Fix routing to fix task in scheduler' (#72) from issue-51 into master
All checks were successful
Java CI with Maven / test (push) Successful in 35s
Java CI with Maven / build-and-push-frontend (push) Successful in 2m7s
Java CI with Maven / build-and-push-backend (push) Successful in 1m25s

Reviewed-on: #72
This commit is contained in:
sebastian 2023-11-18 08:51:12 +01:00
commit 19f3b6cf65
2 changed files with 6 additions and 4 deletions

View File

@ -1,4 +1,3 @@
<div class="container">
<app-navigation-link-list #navLinkList [navigationLinks]="defaultNavigationLinkPath"></app-navigation-link-list>

View File

@ -171,7 +171,7 @@ export class SchedulerComponent implements OnInit{
start: new Date(scheduleInfo.scheduleDate),
title: this.task!.taskName,
color: colors['red'],
allDay: true
allDay: true,
})
this.refresh.next();
}
@ -204,7 +204,9 @@ export class SchedulerComponent implements OnInit{
color: color,
allDay: true,
meta: {
ID: this.scheduleID
ID: this.scheduleID,
taskgroupID: schedule.taskgroupPath[schedule.taskgroupPath.length-1].taskgroupID,
taskID: schedule.task.taskID
}
})
this.refresh.next();
@ -212,7 +214,8 @@ export class SchedulerComponent implements OnInit{
}
eventClicked({ event }: { event: CalendarEvent }): void {
this.router.navigateByUrl("/taskgroups/" + this.taskgroupID.toString() + "/tasks/" + this.task!.taskID )
console.log(event.meta.taskgroupID);
this.router.navigateByUrl("/taskgroups/" + event.meta.taskgroupID + "/tasks/" + event.meta.taskID )
}
computeTaskPath(taskgroupPath: TaskgroupEntityInfo[], task: TaskShortInfo | TaskEntityInfo) {