Skip to content

Commit

Permalink
fix showRowIndex in header
Browse files Browse the repository at this point in the history
  • Loading branch information
fdelemarre committed Jun 27, 2024
1 parent fa36fca commit 1f44f74
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/webapp/components/table/BasicTable.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ export const BasicTable: React.FC<BasicTableProps> = React.memo(
<StyledTable>
<TableHead>
<TableRow>
<TableCell />
{showRowIndex && <TableCell />}
{columns.map(({ name }) => (
<TableCell key={name}>{_.startCase(name)}</TableCell>
))}
Expand Down

0 comments on commit 1f44f74

Please sign in to comment.