From 1dfc314bc15b26754861d240d08e11f279ddd2d8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=AF=9B=E4=BA=9A=E7=90=9B?= Date: Mon, 11 Jul 2022 02:07:04 +0800 Subject: [PATCH] [#60] fix list api docs example --- ui/src/components/collections/docs/ListApiDocs.svelte | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ui/src/components/collections/docs/ListApiDocs.svelte b/ui/src/components/collections/docs/ListApiDocs.svelte index 983f1e87..68e06abe 100644 --- a/ui/src/components/collections/docs/ListApiDocs.svelte +++ b/ui/src/components/collections/docs/ListApiDocs.svelte @@ -84,7 +84,7 @@ }); // alternatively you can also fetch all records at once via getFullList: - client.Records.getFullList("${collection?.name}", 200 /* batch size */); + client.Records.getFullList("${collection?.name}", 200 /* batch size */) .then(function (records) { // success... }).catch(function (error) {