File tree 2 files changed +6
-3
lines changed
pf4-component-mapper/src/wizard/wizard-components
2 files changed +6
-3
lines changed Original file line number Diff line number Diff line change @@ -26,6 +26,9 @@ const devConfig = {
26
26
process : 'process/browser.js'
27
27
} )
28
28
] ,
29
+ devServer : {
30
+ port : 3000 ,
31
+ } ,
29
32
module : {
30
33
rules : [
31
34
{
Original file line number Diff line number Diff line change 1
1
import React from 'react' ;
2
- import { Button } from '@patternfly/react-core' ;
2
+ import { Button , WizardFooter } from '@patternfly/react-core' ;
3
3
import selectNext from '@data-driven-forms/common/wizard/select-next' ;
4
4
import { FormSpy } from '@data-driven-forms/react-form-renderer' ;
5
5
@@ -29,7 +29,7 @@ const WizardStepButtons = ({
29
29
formOptions,
30
30
conditionalSubmitFlag,
31
31
} ) => (
32
- < footer className = { `pf-v6-c-wizard__footer ${ buttonsClassName ? buttonsClassName : '' } ` } >
32
+ < WizardFooter className = { buttonsClassName ? buttonsClassName : undefined } >
33
33
{ Buttons ? (
34
34
< Buttons
35
35
disableBack = { disableBack }
@@ -67,7 +67,7 @@ const WizardStepButtons = ({
67
67
) }
68
68
</ FormSpy >
69
69
) }
70
- </ footer >
70
+ </ WizardFooter >
71
71
) ;
72
72
73
73
export default WizardStepButtons ;
You can’t perform that action at this time.
0 commit comments