From d64df8ba6813a8b7a422da571adf277e37bde16b Mon Sep 17 00:00:00 2001 From: Jai Bhagat Date: Mon, 3 Jan 2022 12:34:02 -0500 Subject: [PATCH] fix: router expect identifier instead of model for trans to job page --- ui/app/components/job-row.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ui/app/components/job-row.js b/ui/app/components/job-row.js index 5d5dbd056..c353813c0 100644 --- a/ui/app/components/job-row.js +++ b/ui/app/components/job-row.js @@ -26,7 +26,7 @@ export default class JobRow extends Component { @action gotoJob() { const { job } = this; - this.router.transitionTo('jobs.job', job, { + this.router.transitionTo('jobs.job', job.plainId, { queryParams: { namespace: job.get('namespace.name') }, }); }