Skip to content

Commit

Permalink
fix(ui): link to noderun: missing name query params (#5129)
Browse files Browse the repository at this point in the history
  • Loading branch information
sguiheux authored Apr 20, 2020
1 parent c6a8f2c commit a5a1195
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ export class WorkflowWNodePipelineComponent {
displayLogs() {
if (this.noderun) {
this._router.navigate(['node', this.noderun.id], {
relativeTo: this._activatedRoute,
relativeTo: this._activatedRoute, queryParams: { name: this.node.name }
});
} else {
this._router.navigate([
Expand Down
1 change: 1 addition & 0 deletions ui/src/app/shared/workflow/wnode/wnode.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -190,6 +190,7 @@ export class WorkflowWNodeComponent implements OnInit {
case 'logs':
this._router.navigate(['node', this.currentNodeRun.id], {
relativeTo: this._activatedRoute,
queryParams: { name: this.node.name }
});
break;
}
Expand Down

0 comments on commit a5a1195

Please sign in to comment.