Revert "Release/2026 02 27 (pull request #3070)"

This commit is contained in:
Patrick Fic
2026-03-04 16:18:44 +00:00
parent 522f2b9e26
commit c9e41ba72a
204 changed files with 5497 additions and 7715 deletions

View File

@@ -1,5 +1,4 @@
import { Card, Input } from "antd";
import ResponsiveTable from "../responsive-table/responsive-table.component";
import { Card, Input, Table } from "antd";
import { useContext, useState } from "react";
import { useTranslation } from "react-i18next";
import JobCreateContext from "../../pages/jobs-create/jobs-create.context";
@@ -96,12 +95,11 @@ export default function JobsCreateOwnerInfoSearchComponent({ loading, owners })
/>
}
>
<ResponsiveTable
<Table
loading={loading}
scroll={{ x: true }}
pagination={{ placement: "top" }}
columns={columns}
mobileColumnKeys={["ownr_ln", "ownr_ph1", "ownr_ph2", "ownr_fn"]}
rowKey="id"
dataSource={owners}
onChange={handleTableChange}