From 89e79041ff11e75e39ad5f5205d65b01b2660c97 Mon Sep 17 00:00:00 2001 From: Katherine Date: Sat, 23 Nov 2024 12:52:33 +0800 Subject: [PATCH] Revert "fix: issue with label width in horizontal layout (#5709)" (#5715) This reverts commit 58017e521dbc6cd9421b15230ca167bc18cc85a9. --- .../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 3e4284142b..0183ad36ad 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}; }, );