fix: issue with label width in horizontal layout (#5709)

This commit is contained in:
Katherine 2024-11-22 14:46:42 +08:00 committed by GitHub
parent f9b5dba47a
commit 58017e521d
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -169,7 +169,7 @@ const RenderRecord = React.memo(
return null;
}
return <>{result}</>;
return <div style={{ overflowWrap: 'inherit', whiteSpace: 'normal' }}>{result}</div>;
},
);