From 36b3a53ab2788315c8b1f4899289d18606d03131 Mon Sep 17 00:00:00 2001 From: GitHub Actions Bot Date: Wed, 17 May 2023 19:24:06 +0000 Subject: [PATCH] =?UTF-8?q?=F0=9F=94=B1:=20[client]=20sync=20upgrade=20wit?= =?UTF-8?q?h=202=20commits=20[trident-sync]?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit fix: 修复rowhandle 排列不整齐的问题 --- packages/ui/certd-client/src/plugin/fast-crud/index.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/ui/certd-client/src/plugin/fast-crud/index.tsx b/packages/ui/certd-client/src/plugin/fast-crud/index.tsx index 9a92d9d2..50f50f2c 100644 --- a/packages/ui/certd-client/src/plugin/fast-crud/index.tsx +++ b/packages/ui/certd-client/src/plugin/fast-crud/index.tsx @@ -83,7 +83,7 @@ function install(app: any, options: any = {}) { if (res.offset % pageSize === 0) { currentPage++; } - return { currentPage, pageSize, ...res }; + return { currentPage, pageSize, records: res.records, total: res.total }; } }, form: {