File tree Expand file tree Collapse file tree 2 files changed +6
-3
lines changed
pf4-component-mapper/src/wizard/wizard-components Expand file tree Collapse file tree 2 files changed +6
-3
lines changed Original file line number Diff line number Diff line change @@ -26,6 +26,9 @@ const devConfig = {
2626 process : 'process/browser.js'
2727 } )
2828 ] ,
29+ devServer : {
30+ port : 3000 ,
31+ } ,
2932 module : {
3033 rules : [
3134 {
Original file line number Diff line number Diff line change 11import React from 'react' ;
2- import { Button } from '@patternfly/react-core' ;
2+ import { Button , WizardFooter } from '@patternfly/react-core' ;
33import selectNext from '@data-driven-forms/common/wizard/select-next' ;
44import { FormSpy } from '@data-driven-forms/react-form-renderer' ;
55
@@ -29,7 +29,7 @@ const WizardStepButtons = ({
2929 formOptions,
3030 conditionalSubmitFlag,
3131} ) => (
32- < footer className = { `pf-v6-c-wizard__footer ${ buttonsClassName ? buttonsClassName : '' } ` } >
32+ < WizardFooter className = { buttonsClassName ? buttonsClassName : undefined } >
3333 { Buttons ? (
3434 < Buttons
3535 disableBack = { disableBack }
@@ -67,7 +67,7 @@ const WizardStepButtons = ({
6767 ) }
6868 </ FormSpy >
6969 ) }
70- </ footer >
70+ </ WizardFooter >
7171) ;
7272
7373export default WizardStepButtons ;
You can’t perform that action at this time.
0 commit comments