feature/IO-3499-React-19 Production Table on schedule was missing col headers

This commit is contained in:
Dave
2026-01-22 13:48:43 -05:00
parent 48336b88e0
commit 40e8529eeb
4 changed files with 27 additions and 3 deletions

View File

@@ -22,6 +22,15 @@ export default function ScheduleProductionList() {
{error ? <AlertComponent title={error.message} type="error" /> : null}
{data ? (
<table>
<thead>
<tr>
<th> {t("appointments.labels.ro_number")}</th>
<th> {t("appointments.labels.owner")}</th>
<th> {t("appointments.labels.vehicle")}</th>
<th> {t("appointments.labels.bp")}</th>
<th> {t("appointments.labels.scheduled_completion")}</th>
</tr>
</thead>
<tbody>
{data?.jobs
? data.jobs.map((j) => (