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 de5980e commit 01dc264Copy full SHA for 01dc264
app/components/DataTable/index.tsx
@@ -420,7 +420,7 @@ const DataTable = ({
420
columnKeys: colApi.getAllDisplayedColumns()
421
.filter((col) => {
422
const colD = col.getColDef();
423
- return (colD?.headerName === 'Actions' || colD?.field === 'Actions' || col.getColId() === 'Actions');
+ return !(colD?.headerName === 'Actions' || colD?.field === 'Actions' || col.getColId() === 'Actions');
424
})
425
.map((col) => col.getColId()),
426
fileName: `ipr_${report.patientId}_${report.ident}_${titleText.split(' ').join('_')}_${date}.tsv`,
0 commit comments