Skip to content
This repository was archived by the owner on Jul 30, 2025. It is now read-only.

Commit 14119d2

Browse files
committed
fix(plugins/plugin-client-common): wizards with emtpy 1st section have empty header UI
1 parent e7936dc commit 14119d2

File tree

1 file changed

+1
-1
lines changed
  • plugins/plugin-client-common/src/components/Content/Markdown/components/Wizard

1 file changed

+1
-1
lines changed

plugins/plugin-client-common/src/components/Content/Markdown/components/Wizard/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ export default class Wizard extends React.PureComponent<WizardProps> {
9090
className="kui--wizard"
9191
data-hide-cancel={true}
9292
footer={this.footer()}
93-
title={this.props['data-kui-title']}
93+
title={this.props['data-kui-title'].trim()}
9494
description={this.props.children[0]}
9595
/>
9696
)

0 commit comments

Comments
 (0)