style: flexWrap in actionBar (#3635)

This commit is contained in:
katherinehhh 2024-03-06 21:32:32 +08:00 committed by GitHub
parent 1c0654001f
commit d82ed8058c
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -65,7 +65,7 @@ export const ActionBar = observer(
>
{props.children && (
<div>
<Space {...spaceProps}>
<Space {...spaceProps} style={{ flexWrap: 'wrap' }}>
{fieldSchema.mapProperties((schema, key) => {
return <RecursionField key={key} name={key} schema={schema} />;
})}