minor ui improvements

This commit is contained in:
Gani Georgiev
2023-02-21 22:24:49 +02:00
parent 4fdc8feafc
commit 0db6c783cd
40 changed files with 358 additions and 295 deletions

View File

@@ -81,7 +81,7 @@
});
// you can also fetch all records at once via getFullList
const records = await pb.collection('${collection?.name}').getFullList(200 /* batch size */, {
const records = await pb.collection('${collection?.name}').getFullList({
sort: '-created',
});
@@ -106,7 +106,6 @@
// you can also fetch all records at once via getFullList
final records = await pb.collection('${collection?.name}').getFullList(
batch: 200,
sort: '-created',
);