Skip to content

Commit 7e6a6eb

Browse files
Merge pull request #609 from bcgsc/bugfix/DEVSU-2597-undefined-kbmatchtag
DEVSU-2597 Fix undefined 'kbmatchTag' error in kb matches view
2 parents 941ad3b + 4f8a7b4 commit 7e6a6eb

File tree

1 file changed

+1
-1
lines changed
  • app/components/DataTable/components/KbMatchesActionCellRenderer

1 file changed

+1
-1
lines changed

app/components/DataTable/components/KbMatchesActionCellRenderer/index.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -171,7 +171,7 @@ const KbMatchesActionCellRenderer = (props: ActionCellRendererProps) => {
171171
return category;
172172
});
173173
setSelectedRows([data]);
174-
}, [category, data, approvedTherapy, matchedCancer, kbData.kbmatchTag, setMoveKbMatchesDialogOpen, setMoveKbMatchesTableName, setSelectedRows]);
174+
}, [category, data, approvedTherapy, matchedCancer, kbData?.kbmatchTag, setMoveKbMatchesDialogOpen, setMoveKbMatchesTableName, setSelectedRows]);
175175

176176
if (!REPORT_TYPES_TO_SHOW_EXTRA_MENU.includes(reportType)) {
177177
return <ActionCellRenderer {...props} />;

0 commit comments

Comments
 (0)