feature/IO-3499-React-19 Production Table on schedule was missing col headers
This commit is contained in:
@@ -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) => (
|
||||
|
||||
Reference in New Issue
Block a user