Skip to content

Commit

Permalink
tablesep
Browse files Browse the repository at this point in the history
  • Loading branch information
theosanderson committed Jan 22, 2025
1 parent e3a8ae2 commit 1cf60a9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion website/src/components/SearchPage/Table.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -169,7 +169,7 @@ export const Table: FC<TableProps> = ({
{data.map((row, index) => (
<tr
key={index}
className={`hover:bg-primary-100 border-gray-100 ${
className={`hover:bg-primary-100 border-gray-100 border-b border-gray-200 ${
row[primaryKey] === previewedSeqId ? 'bg-gray-200' : ''
} cursor-pointer`}
onClick={(e) => handleRowClick(e, row[primaryKey] as string)}
Expand Down

0 comments on commit 1cf60a9

Please sign in to comment.