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,4 +1,5 @@
import { Button, Card, Col, Input, Table, Typography } from "antd";
import { Button, Card, Col, Input, Typography } from "antd";
import ResponsiveTable from "../responsive-table/responsive-table.component";
import { useState } from "react";
import { useTranslation } from "react-i18next";
@@ -48,7 +49,14 @@ export default function ProfileShopsComponent({ loading, data, updateActiveShop
/>
}
>
<Table pagination={false} loading={loading} columns={columns} rowKey="id" dataSource={filteredData} />
<ResponsiveTable
pagination={false}
loading={loading}
columns={columns}
mobileColumnKeys={["actions", "shopname", "active"]}
rowKey="id"
dataSource={filteredData}
/>
</Card>
</Col>
);