From 58017e521dbc6cd9421b15230ca167bc18cc85a9 Mon Sep 17 00:00:00 2001 From: Katherine Date: Fri, 22 Nov 2024 14:46:42 +0800 Subject: [PATCH] fix: issue with label width in horizontal layout (#5709) --- .../schema-component/antd/association-field/InternalViewer.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/core/client/src/schema-component/antd/association-field/InternalViewer.tsx b/packages/core/client/src/schema-component/antd/association-field/InternalViewer.tsx index 0183ad36ad..3e4284142b 100644 --- a/packages/core/client/src/schema-component/antd/association-field/InternalViewer.tsx +++ b/packages/core/client/src/schema-component/antd/association-field/InternalViewer.tsx @@ -169,7 +169,7 @@ const RenderRecord = React.memo( return null; } - return <>{result}; + return
{result}
; }, );