From 919c752da6e74aeb87d7bc128d37003fdcac7b07 Mon Sep 17 00:00:00 2001 From: Patrick Fic <> Date: Wed, 16 Dec 2020 21:51:17 -0800 Subject: [PATCH] Adjusted recent items label for jobs. IO-475 --- .../jobs-detail/jobs-detail.page.container.jsx | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/client/src/pages/jobs-detail/jobs-detail.page.container.jsx b/client/src/pages/jobs-detail/jobs-detail.page.container.jsx index d36c38a05..40ec0296d 100644 --- a/client/src/pages/jobs-detail/jobs-detail.page.container.jsx +++ b/client/src/pages/jobs-detail/jobs-detail.page.container.jsx @@ -74,13 +74,13 @@ function JobsDetailPageContainer({ CreateRecentItem( jobId, "job", - `${data.jobs_by_pk.est_number || ""} | ${ - data.jobs_by_pk.ownr_fn || "" - } ${data.jobs_by_pk.ownr_ln || ""} ${ - data.jobs_by_pk.ownr_co_nm || "" - }${ - data.jobs_by_pk.ro_number ? ` | ${data.jobs_by_pk.ro_number}` : "" - }`, + `${ + data.jobs_by_pk.ro_number + ? data.jobs_by_pk.ro_number + : data.jobs_by_pk.est_number + } | ${data.jobs_by_pk.ownr_fn || ""} ${ + data.jobs_by_pk.ownr_ln || "" + } ${data.jobs_by_pk.ownr_co_nm || ""}`, `/manage/jobs/${jobId}` ) );