feature/IO-3497-Ant-Design-v5-to-v6 - Signed off Files

This commit is contained in:
Dave
2026-01-12 11:34:25 -05:00
parent c3da0d9035
commit c119a66f27
70 changed files with 442 additions and 463 deletions

View File

@@ -8,7 +8,7 @@ export default function CourtesyCarDetailPageComponent({ contracts, form, saveLo
<Col span={24}>
<CourtesyCarCreateFormComponent form={form} saveLoading={saveLoading} />
</Col>
<Divider type="horizontal" />
<Divider orientation="horizontal" />
<Col span={24}>
<CourtesyCarContractListComponent contracts={contracts} totalContracts={totalContracts} />
</Col>

View File

@@ -190,7 +190,7 @@ export function ExportLogsPageComponent() {
<Table
loading={loading}
pagination={{
position: "top",
placement: "top",
pageSize: pageLimit,
current: parseInt(page || 1, 10),
total: data && data.search_exportlog_aggregate.aggregate.count

View File

@@ -332,7 +332,7 @@ export function JobsDetailPage({
extra={menuExtra}
/>
<JobsDetailHeader job={job} />
<Divider type="horizontal" />
<Divider orientation="horizontal" />
<JobProfileDataWarning job={job} />
<FormFieldsChanged form={form} />
<Tabs

View File

@@ -8,7 +8,7 @@ export default function OwnersDetailComponent({ owner, refetch }) {
<Col span={24}>
<OwnerDetailForm owner={owner} refetch={refetch} />
</Col>
<Divider type="horizontal" />
<Divider orientation="horizontal" />
<Col span={24}>
<OwnerDetailJobsComponent owner={owner} />
</Col>

View File

@@ -176,7 +176,7 @@ export function PhonebookPageComponent({ bodyshop, authLevel }) {
<Table
loading={loading}
pagination={{
position: "top",
placement: "top",
pageSize: pageLimit,
current: parseInt(page || 1, 10),
total: data && data.search_phonebook_aggregate.aggregate.count

View File

@@ -133,7 +133,7 @@ export function SimplifiedPartsJobDetailComponent({ setPrintCenterContext, jobRO
<PageHeader title={<Space>{job.ro_number || t("general.labels.na")}</Space>} extra={menuExtra} />
<JobsDetailHeader job={job} />
<Divider type="horizontal" />
<Divider orientation="horizontal" />
<FormFieldsChanged form={form} />
<Tabs
defaultActiveKey={search.tab}

View File

@@ -9,7 +9,7 @@ export default function VehicleDetailComponent({ vehicle, refetch }) {
<Col span={24}>
<VehicleDetailFormContainer vehicle={vehicle} refetch={refetch} />
</Col>
<Divider type="horizontal" />
<Divider orientation="horizontal" />
<Col span={24}>
<VehicleDetailJobsComponent vehicle={vehicle} />
</Col>