diff --git a/client/src/components/jobs-detail-header/jobs-detail-header.component.jsx b/client/src/components/jobs-detail-header/jobs-detail-header.component.jsx index 030ffcf9b..32bf610d5 100644 --- a/client/src/components/jobs-detail-header/jobs-detail-header.component.jsx +++ b/client/src/components/jobs-detail-header/jobs-detail-header.component.jsx @@ -16,6 +16,7 @@ import JobEmployeeAssignments from "../job-employee-assignments/job-employee-ass import ProductionListColumnProductionNote from "../production-list-columns/production-list-columns.productionnote.component"; import "./jobs-detail-header.styles.scss"; import JobsRelatedRos from "../jobs-related-ros/jobs-related-ros.component"; +import { DateTimeFormatter } from "../../utils/DateFormatter"; const mapStateToProps = createStructuredSelector({ jobRO: selectJobReadOnly, @@ -70,6 +71,12 @@ export function JobsDetailHeader({ job, bodyshop, disabled }) { {job.production_vars && job.production_vars.alert ? ( ) : null} + {job.status === bodyshop.md_ro_statuses.default_scheduled && + job.scheduled_in ? ( + + {job.scheduled_in} + + ) : null}