feature/IO-3499-React-19 -Checkpoint

This commit is contained in:
Dave
2026-01-30 17:32:12 -05:00
parent 1f3be72d9d
commit 3a0f6101c8
6 changed files with 602 additions and 3 deletions

View File

@@ -53,13 +53,13 @@ export default function FortellisCustomerSelector({ bodyshop, jobid, socket }) {
render: (_t, r) => <Checkbox disabled checked={r.vinOwner} />
},
{
title: t("jobs.fields.dms.name1"),
title: t("jobs.fields.dms.first_name"),
dataIndex: ["customerName", "firstName"],
key: "firstName",
sorter: (a, b) => alphaSort(a.customerName?.firstName, b.customerName?.firstName)
},
{
title: t("jobs.fields.dms.name1"),
title: t("jobs.fields.dms.last_name"),
dataIndex: ["customerName", "lastName"],
key: "lastName",
sorter: (a, b) => alphaSort(a.customerName?.lastName, b.customerName?.lastName)