yarn: Upgrade packages

- react: 16.13.1
- react-admin: 3.4.0
- prettier: 2.0.0

Change-Id: Ibbd4ff2bd8054a7086d194229ec732c1a256579c
This commit is contained in:
Manuel Stahl 2020-04-06 11:42:49 +02:00
parent 445c7fc327
commit 2240559f74
4 changed files with 277 additions and 486 deletions

View file

@ -141,13 +141,7 @@ const dataProvider = {
return jsonClient(url).then(({ headers, json }) => ({
data: json,
total: parseInt(
headers
.get("content-range")
.split("/")
.pop(),
10
),
total: parseInt(headers.get("content-range").split("/").pop(), 10),
}));
},