diff --git a/packages/plugins/@nocobase/plugin-block-workbench/src/client/WorkbenchAction.tsx b/packages/plugins/@nocobase/plugin-block-workbench/src/client/WorkbenchAction.tsx
index e4a2f4434b..b82a04c872 100644
--- a/packages/plugins/@nocobase/plugin-block-workbench/src/client/WorkbenchAction.tsx
+++ b/packages/plugins/@nocobase/plugin-block-workbench/src/client/WorkbenchAction.tsx
@@ -75,6 +75,7 @@ export const WorkbenchAction = withDynamicSchemaProps((props) => {
icon={null}
title={}
confirmTitle={fieldSchema.title}
+ style={{ display: 'flex', alignItems: 'center', justifyContent: 'center' }}
/>
);
diff --git a/packages/plugins/@nocobase/plugin-block-workbench/src/client/WorkbenchBlock.tsx b/packages/plugins/@nocobase/plugin-block-workbench/src/client/WorkbenchBlock.tsx
index e09db30b53..e2fe54b46b 100644
--- a/packages/plugins/@nocobase/plugin-block-workbench/src/client/WorkbenchBlock.tsx
+++ b/packages/plugins/@nocobase/plugin-block-workbench/src/client/WorkbenchBlock.tsx
@@ -52,11 +52,7 @@ const ResponsiveSpace = () => {
return (
{fieldSchema.mapProperties((s, key) => {
- return (
-
-
-
- );
+ return ;
})}
);