Skip to content

Commit

Permalink
Fix totalRecords reporting for sync display.table in JS
Browse files Browse the repository at this point in the history
Closes T-832
  • Loading branch information
jacobmischka committed May 1, 2023
1 parent 4972019 commit 05a01a6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/displayTable.ts
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ export default function displayTable(logger: Logger) {
)

builtColumns = initialColumns
totalRecords = initialData.length
totalRecords = sorted.length
}

return {
Expand Down

0 comments on commit 05a01a6

Please sign in to comment.