feature/feature/IO-3554-Form-Row-Layout - Responsive overhaul

This commit is contained in:
Dave
2026-02-26 15:56:57 -05:00
parent 226cc801ae
commit fd6f46e39d
99 changed files with 807 additions and 443 deletions

View File

@@ -1,6 +1,7 @@
import { Checkbox, Divider, Table } from "antd";
import { Checkbox, Divider } from "antd";
import { useTranslation } from "react-i18next";
import PhoneFormatter from "../../utils/PhoneFormatter";
import ResponsiveTable from "../responsive-table/responsive-table.component";
export default function OwnerFindModalComponent({
selectedOwner,
@@ -75,9 +76,10 @@ export default function OwnerFindModalComponent({
return (
<div>
<Table
<ResponsiveTable
pagination={{ placement: "bottom" }}
columns={columns}
mobileColumnKeys={["ownr_ln", "ownr_fn", "ownr_ph1", "ownr_ph2"]}
rowKey="id"
loading={ownersListLoading}
dataSource={ownersList}