We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b671461 commit ecfefb7Copy full SHA for ecfefb7
src/modules/datasets/dataset/DatasetBulkDealsTable.tsx
@@ -94,12 +94,18 @@ export function DatasetBulkDealsTable({
94
[bulkDeals.length, isError, setOutdated]
95
);
96
97
+ const filteredColumns = columns.filter((col) => col.accessorKey !== 'dealid');
98
+
99
return (
100
<div className="space-y-6">
101
{hasPastError && !bulkDeals.length ? (
102
<ErrorAlert message="An error occurred during dataset bulkDeals loading." />
103
) : (
- <DataTable columns={columns} data={bulkDeals} />
104
+ <DataTable
105
+ columns={filteredColumns}
106
+ data={bulkDeals}
107
+ tableLength={DETAIL_TABLE_LENGTH}
108
+ />
109
)}
110
<PaginatedNavigation
111
currentPage={currentPage}
0 commit comments