IO-1219 Improve display of job status.

This commit is contained in:
Patrick Fic
2021-07-15 13:59:23 -07:00
parent 7ce4264309
commit 0d30fc0e32

View File

@@ -80,7 +80,7 @@ const JobSearchSelect = (
{theOptions
? theOptions.map((o) => (
<Option key={o.id} value={o.id} status={o.status}>
<Space>
<Space align="center">
<span>
{`${clm_no && o.clm_no ? `${o.clm_no} | ` : ""}${
o.ro_number || t("general.labels.na")
@@ -90,7 +90,9 @@ const JobSearchSelect = (
o.v_model_desc || ""
}`}
</span>
<Tag>{o.status}</Tag>
<Tag>
<strong>{o.status}</strong>
</Tag>
</Space>
</Option>
))