Skip to content

Commit b29be50

Browse files
authored
Merge pull request #1404 from data-driven-forms/actual-form-class
fix(pf4): use form classname of inModal wizard
2 parents 6eaf8ed + c974420 commit b29be50

File tree

1 file changed

+1
-1
lines changed
  • packages/pf4-component-mapper/src/wizard

1 file changed

+1
-1
lines changed

packages/pf4-component-mapper/src/wizard/wizard.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ const WizardInternal = ({
9797
container={state.container}
9898
aria-labelledby={rest.name}
9999
{...ModalProps}
100-
className={inModal ? ` pf-v5-c-wizard${ModalProps.className || ''}` : ModalProps.className}
100+
className={inModal ? `pf-v5-c-form${ModalProps.className || ''}` : ModalProps.className}
101101
>
102102
<div
103103
tabIndex={inModal ? 0 : null}

0 commit comments

Comments
 (0)