Added viewing all CSI responses + read only version of configurable form BOD-154

This commit is contained in:
Patrick Fic
2020-06-04 13:44:43 -07:00
parent 910183d8e7
commit 90152fc613
27 changed files with 615 additions and 50 deletions

View File

@@ -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}
/>