From b76f065cf797f925677ffa8ad388a1563fdd7a4e Mon Sep 17 00:00:00 2001 From: wjh Date: Wed, 17 Jul 2024 10:52:18 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E4=BF=9D=E5=AD=98=E5=8C=BA=E5=9D=97?= =?UTF-8?q?=E6=A8=A1=E7=89=88=E6=97=B6=E6=93=8D=E4=BD=9C=E4=BD=8D=E7=BD=AE?= =?UTF-8?q?=E9=94=99=E8=AF=AF=20(#1329)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: sealday Reviewed-on: https://git.daoyoucloud.com/daoyoucloud/tachybase/pulls/1329 Reviewed-by: sealday Co-authored-by: wjh Co-committed-by: wjh --- packages/core/client/src/schema-settings/SchemaSettings.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/core/client/src/schema-settings/SchemaSettings.tsx b/packages/core/client/src/schema-settings/SchemaSettings.tsx index cfda4b5ac..5c6ac91a1 100644 --- a/packages/core/client/src/schema-settings/SchemaSettings.tsx +++ b/packages/core/client/src/schema-settings/SchemaSettings.tsx @@ -363,7 +363,7 @@ const findBlockTemplateSchema = (fieldSchema) => { }; export const SchemaSettingsFormItemTemplate = function FormItemTemplate(props) { - const { insertAdjacentPosition = 'afterBegin', componentName, collectionName, resourceName } = props; + const { insertAdjacentPosition = 'beforeEnd', componentName, collectionName, resourceName } = props; const { t } = useTranslation(); const compile = useCompile(); const { getCollection } = useCollectionManager_deprecated();