Skip to content

Commit

Permalink
Fixed broken submission view link for async runs
Browse files Browse the repository at this point in the history
  • Loading branch information
sauterl committed Oct 2, 2023
1 parent 66a995b commit fb7be59
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -84,8 +84,9 @@ export class RunAsyncAdminViewComponent implements AfterViewInit {
}

public submissionsOf(task, property = 'id') {
console.log("S of ", task);
this.runId.subscribe((r) => {
this.router.navigateByUrl(`run/admin/submissions/${r}/${task[property]}`);
this.router.navigateByUrl(`evaluation/admin/submissions/${r}/${task[property]}`);
});
}

Expand Down

0 comments on commit fb7be59

Please sign in to comment.