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} icon={null}
title={<Button />} title={<Button />}
confirmTitle={fieldSchema.title} confirmTitle={fieldSchema.title}
style={{ display: 'flex', alignItems: 'center', justifyContent: 'center' }}
/> />
</ACLActionProvider> </ACLActionProvider>
); );

View File

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