Added viewing all CSI responses + read only version of configurable form BOD-154
This commit is contained in:
@@ -47,8 +47,8 @@ export default function JobsList({ refetch, loading, jobs, total }) {
|
||||
},
|
||||
{
|
||||
title: t("jobs.fields.owner"),
|
||||
dataIndex: "ownr_ln",
|
||||
key: "ownr_ln",
|
||||
dataIndex: "owner",
|
||||
key: "owner",
|
||||
ellipsis: true,
|
||||
sorter: (a, b) => alphaSort(a.ownr_ln, b.ownr_ln),
|
||||
width: "25%",
|
||||
@@ -176,7 +176,6 @@ export default function JobsList({ refetch, loading, jobs, total }) {
|
||||
|
||||
return (
|
||||
<div>
|
||||
THE RIGHT COMPONENT
|
||||
<Table
|
||||
loading={loading}
|
||||
title={() => {
|
||||
@@ -196,7 +195,7 @@ export default function JobsList({ refetch, loading, jobs, total }) {
|
||||
</div>
|
||||
);
|
||||
}}
|
||||
size='small'
|
||||
size="small"
|
||||
pagination={{
|
||||
position: "top",
|
||||
pageSize: 25,
|
||||
@@ -204,7 +203,7 @@ export default function JobsList({ refetch, loading, jobs, total }) {
|
||||
total: total,
|
||||
}}
|
||||
columns={columns}
|
||||
rowKey='id'
|
||||
rowKey="id"
|
||||
dataSource={jobs}
|
||||
onChange={handleTableChange}
|
||||
/>
|
||||
|
||||
Reference in New Issue
Block a user