Skip to content

Commit 27dd804

Browse files
committed
Fix display of offsets in raw results table
1 parent 240e0fb commit 27dd804

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

extensions/ql-vscode/src/view/raw-results-table.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ export class RawTable extends React.Component<RawTableProps, {}> {
3030
const tableRows = dataRows.map((row: ResultRow, rowIndex: number) =>
3131
<RawTableRow
3232
key={rowIndex}
33-
rowIndex={rowIndex}
33+
rowIndex={rowIndex + this.props.offset}
3434
row={row}
3535
databaseUri={databaseUri}
3636
/>

0 commit comments

Comments
 (0)