Revert "Release/2026 02 27 (pull request #3070)"
This commit is contained in:
@@ -1,5 +1,4 @@
|
||||
import { Card, Col, Row } from "antd";
|
||||
import ResponsiveTable from "../responsive-table/responsive-table.component";
|
||||
import { Card, Col, Row, Table } from "antd";
|
||||
import _ from "lodash";
|
||||
import dayjs from "../../utils/day";
|
||||
import { useMemo, useState } from "react";
|
||||
@@ -214,13 +213,12 @@ const JobRelatedTicketsTable = ({ loading, jobTickets, startDate, endDate }) =>
|
||||
|
||||
return (
|
||||
<Card title={t("timetickets.labels.jobhours")}>
|
||||
<ResponsiveTable
|
||||
<Table
|
||||
loading={loading}
|
||||
scroll={{
|
||||
x: true // y: "50rem"
|
||||
}}
|
||||
columns={columns}
|
||||
mobileColumnKeys={["total", "actions", "empname", "actHrs"]}
|
||||
rowKey="id"
|
||||
dataSource={data}
|
||||
onChange={handleTableChange}
|
||||
@@ -290,13 +288,12 @@ const ShiftRelatedTicketsTable = ({ loading, shiftTickets, startDate, endDate })
|
||||
|
||||
return (
|
||||
<Card title={t("timetickets.labels.clockhours")}>
|
||||
<ResponsiveTable
|
||||
<Table
|
||||
loading={loading}
|
||||
scroll={{
|
||||
x: true // y: "50rem"
|
||||
}}
|
||||
columns={columns}
|
||||
mobileColumnKeys={["total", "actions", "empname", "actHrs"]}
|
||||
rowKey="id"
|
||||
dataSource={data}
|
||||
onChange={handleTableChange}
|
||||
|
||||
Reference in New Issue
Block a user