feature/IO-3499-React-19-ProductionBoard - remove use-memo-one / Add missing cards

This commit is contained in:
Dave
2026-01-15 14:31:15 -05:00
parent 1165fc1489
commit e4aa920b1a
8 changed files with 22 additions and 22 deletions

View File

@@ -1,4 +1,4 @@
import { Form, Statistic, Tooltip } from "antd";
import { Card, Form, Statistic, Tooltip } from "antd";
import { useMemo } from "react";
import { useTranslation } from "react-i18next";
import { connect } from "react-redux";
@@ -27,7 +27,7 @@ export function JobsDetailDatesComponent({ jobRO, job, bodyshop }) {
: [];
return (
<div>
<Card>
<FormRow header={t("jobs.forms.estdates")}>
<Form.Item label={t("jobs.fields.date_estimated")} name="date_estimated">
<DateTimePicker disabled={jobRO} isDateOnly />
@@ -122,7 +122,7 @@ export function JobsDetailDatesComponent({ jobRO, job, bodyshop }) {
<DateTimePicker disabled={true} />
</Form.Item>
</FormRow>
</div>
</Card>
);
}