IO-1430 add Last Contacted date to job.

This commit is contained in:
Patrick Fic
2021-10-05 09:12:44 -07:00
parent 9a72abbed0
commit b59a5303c6
13 changed files with 98 additions and 9 deletions

View File

@@ -26,6 +26,12 @@ export default function JobDetailCardsDatesComponent({ loading, data }) {
) ? (
<div>{t("jobs.errors.nodates")}</div>
) : null}
{data.date_last_contacted ? (
<Timeline.Item>
<label>{t("jobs.fields.date_last_contacted")}: </label>
<DateTimeFormatter>{data.date_last_contacted}</DateTimeFormatter>
</Timeline.Item>
) : null}
{data.date_open ? (
<Timeline.Item>
<label>{t("jobs.fields.date_open")}: </label>