Skip to content

Commit

Permalink
Fix normalization with Table Widget
Browse files Browse the repository at this point in the history
  • Loading branch information
jmgaya authored Oct 8, 2024
1 parent 9d9de8e commit 6abae62
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/react-widgets/src/models/TableModel.js
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ function fromRemote(props) {
opts: { abortController }
})
.then((res) => ({
rows: normalizeObjectKeys(res.rows),
rows: res.rows,
totalCount: res.metadata.total
}))
.then(formatResult);
Expand Down

0 comments on commit 6abae62

Please sign in to comment.