Skip to content

Commit

Permalink
fix: table error (#631)
Browse files Browse the repository at this point in the history
  • Loading branch information
jsladerman authored Aug 7, 2024
1 parent e227c35 commit 2d3cbf6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/Table.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -783,7 +783,7 @@ function TableRef(
key={key}
onClick={(e) => onRowClick?.(e, row)}
$raised={raised}
$highlighted={row.id === highlightedRowId}
$highlighted={row?.id === highlightedRowId}
$selectable={row?.getCanSelect() ?? false}
$selected={row?.getIsSelected() ?? false}
$clickable={!!onRowClick}
Expand Down

0 comments on commit 2d3cbf6

Please sign in to comment.