Merge branch 'next' into develop

This commit is contained in:
nocobase[bot] 2025-03-19 08:20:08 +00:00
commit 468dbf733d
2 changed files with 2 additions and 5 deletions

View File

@ -75,6 +75,7 @@ export const WorkbenchAction = withDynamicSchemaProps((props) => {
icon={null}
title={<Button />}
confirmTitle={fieldSchema.title}
style={{ display: 'flex', alignItems: 'center', justifyContent: 'center' }}
/>
</ACLActionProvider>
);

View File

@ -52,11 +52,7 @@ const ResponsiveSpace = () => {
return (
<Grid columns={itemsPerRow} gap={gap}>
{fieldSchema.mapProperties((s, key) => {
return (
<Grid.Item style={{ display: 'flex', alignItems: 'center', justifyContent: 'center' }} key={key}>
<NocoBaseRecursionField name={key} schema={s} />
</Grid.Item>
);
return <NocoBaseRecursionField name={key} schema={s} />;
})}
</Grid>
);