diff --git a/packages/editor-core/src/widgets/title/index.tsx b/packages/editor-core/src/widgets/title/index.tsx
index 6374eb2ab..ddbf923cd 100644
--- a/packages/editor-core/src/widgets/title/index.tsx
+++ b/packages/editor-core/src/widgets/title/index.tsx
@@ -61,7 +61,7 @@ export class Title extends Component<{ title: TitleContent; className?: string;
onClick={this.handleClick}
>
{icon ? {icon} : null}
- {title.label ? intl(title.label) : null}
+ {title.label ? {intl(title.label)} : null}
{tip}
);