We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e8b0118 commit 5bf39eeCopy full SHA for 5bf39ee
src/components/data_library/LibraryDataGrid.tsx
@@ -96,6 +96,10 @@ export const LibraryDataGrid: React.FC<LibraryDataGridProps> = ({
96
97
// Check if a row is selectable
98
const isRowSelectable = (params: { row: DatasetTerm | StudyAggregation }) => {
99
+ if (!params.row) {
100
+ return false
101
+ }
102
+
103
if (assetType === AssetType.DATASETS) {
104
const dataset = params.row as DatasetTerm
105
return (
0 commit comments