Skip to content

Commit

Permalink
Release 2.1.6
Browse files Browse the repository at this point in the history
  • Loading branch information
wittfeldt committed Nov 8, 2021
1 parent ab9323c commit 3b66c9a
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
node_modules
node_modules
dist
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@lolocompany/react-admin-lolo",
"version": "2.1.5",
"version": "2.1.6",
"description": "A library for schema-driven web apps using [Lolo](https://lolo.company), [React Admin](https://github.com/marmelab/react-admin) and [RJSF](https://github.com/rjsf-team/react-jsonschema-form)",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
Expand Down
2 changes: 1 addition & 1 deletion src/providers/dataProvider.js
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ export default apiUrl => {
order = 'ASC'
} = params.sort || {};

query = {
const query = {
limit: perPage,
sort: `${field} ${order.toLowerCase()}`,
offset: (page - 1) * perPage,
Expand Down

0 comments on commit 3b66c9a

Please sign in to comment.