Skip to content

Commit

Permalink
Remove deprecated table props
Browse files Browse the repository at this point in the history
  • Loading branch information
deadlycoconuts committed Jul 12, 2024
1 parent 0530476 commit 51a67f5
Show file tree
Hide file tree
Showing 6 changed files with 2 additions and 7 deletions.
2 changes: 0 additions & 2 deletions ui/src/jobs/list/ListEnsemblingJobsTable.js
Original file line number Diff line number Diff line change
Expand Up @@ -233,8 +233,6 @@ export const ListEnsemblingJobsTable = ({
cellProps={cellProps}
pagination={pagination}
onChange={onTableChange}
hasActions={true}
responsive={true}
tableLayout="auto"
/>
<DeleteJobModal
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,6 @@ export const RoutesConfigTable = ({ routes, rules = [], defaultRouteId, defaultT
columns={columns}
itemId="id"
itemIdToExpandedRowMap={itemIdToExpandedRowMap}
isSelectable={false}
cellProps={getCellProps}
/>
);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,6 @@ export const RulesConfigTable = ({ routes, rules = [], defaultTrafficRule }) =>
items={rulesWithRouteDetails}
columns={columns}
itemId="id"
isSelectable={false}
cellProps={getCellProps}
/>
);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ const TreatmentMappingConfigTable = ({ items }) => {
];

return (
<EuiInMemoryTable items={items} columns={columns} isSelectable={false} />
<EuiInMemoryTable items={items} columns={columns} />
);
};

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,6 @@ export const EnvVariablesPanel = ({
columns={columns}
rowProps={getRowProps}
items={items}
hasActions={true}
errors={errors}
renderErrorHeader={(key) => `Row ${parseInt(key) + 1}`}
/>
Expand Down
2 changes: 1 addition & 1 deletion ui/src/router/versions/list/ListRouterVersionsTable.js
Original file line number Diff line number Diff line change
Expand Up @@ -234,7 +234,7 @@ export const ListRouterVersionsTable = ({
rowProps={rowProps}
itemId="version"
pagination={true}
hasActions={true}
// hasActions={true}
sorting={{ sort: { field: "Version", direction: "desc" } }}
/>
);
Expand Down

0 comments on commit 51a67f5

Please sign in to comment.