We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 88f5cce commit 9e8b1bbCopy full SHA for 9e8b1bb
packages/react-core/src/deprecated/components/Wizard/WizardToggle.tsx
@@ -88,7 +88,11 @@ export const WizardToggle: React.FunctionComponent<WizardToggleProps> = ({
88
<span className={css(styles.wizardToggleList)}>
89
<span className={css(styles.wizardToggleListItem)}>
90
<span className={css(styles.wizardToggleNum)}>{activeStepIndex}</span> {activeStepName}
91
- {activeStepSubName && <RhMicronsCaretRightIcon className={css(styles.wizardToggleSeparator)} />}
+ {activeStepSubName && (
92
+ <span className={css(styles.wizardToggleSeparator)}>
93
+ <RhMicronsCaretRightIcon />
94
+ </span>
95
+ )}
96
</span>
97
{activeStepSubName && <span className={css(styles.wizardToggleListItem)}>{activeStepSubName}</span>}
98
0 commit comments