Fix display of offsets in raw results table

This commit is contained in:
Jason Reed
2020-07-06 11:23:43 -04:00
parent 240e0fbd4e
commit 27dd804731

View File

@@ -30,7 +30,7 @@ export class RawTable extends React.Component<RawTableProps, {}> {
const tableRows = dataRows.map((row: ResultRow, rowIndex: number) =>
<RawTableRow
key={rowIndex}
rowIndex={rowIndex}
rowIndex={rowIndex + this.props.offset}
row={row}
databaseUri={databaseUri}
/>