Skip to content

Commit 0f9f187

Browse files
authored
Merge pull request #373 from bcgsc/hotfix/v6.23.1
Hotfix/v6.23.1
2 parents 820b1ed + cfab623 commit 0f9f187

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

app/components/DataTable/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -420,7 +420,7 @@ const DataTable = ({
420420
columnKeys: colApi.getAllDisplayedColumns()
421421
.filter((col) => {
422422
const colD = col.getColDef();
423-
return (colD?.headerName === 'Actions' || colD?.field === 'Actions' || col.getColId() === 'Actions');
423+
return !(colD?.headerName === 'Actions' || colD?.field === 'Actions' || col.getColId() === 'Actions');
424424
})
425425
.map((col) => col.getColId()),
426426
fileName: `ipr_${report.patientId}_${report.ident}_${titleText.split(' ').join('_')}_${date}.tsv`,

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"private": true,
33
"name": "ipr-client",
4-
"version": "6.23.0",
4+
"version": "6.23.1",
55
"keywords": [],
66
"license": "GPL-3.0",
77
"sideEffects": false,

0 commit comments

Comments
 (0)