Merged in feature/2021-07-16 (pull request #138)

feature/2021-07-16

Approved-by: Patrick Fic
This commit is contained in:
Patrick Fic
2021-07-15 22:11:58 +00:00

View File

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