File tree Expand file tree Collapse file tree 3 files changed +4
-4
lines changed
packages/pf4-component-mapper/src/wizard Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -27,7 +27,7 @@ NextButton.propTypes = {
2727 handleNext : PropTypes . func . isRequired ,
2828 nextLabel : PropTypes . node . isRequired ,
2929 getState : PropTypes . func . isRequired ,
30- conditionalSubmitFlag : PropTypes . string . isRequired ,
30+ conditionalSubmitFlag : PropTypes . string ,
3131} ;
3232
3333const WizardStepButtons = ( {
@@ -84,7 +84,7 @@ const WizardStepButtons = ({
8484
8585WizardStepButtons . propTypes = {
8686 disableBack : PropTypes . bool ,
87- conditionalSubmitFlag : PropTypes . string . isRequired ,
87+ conditionalSubmitFlag : PropTypes . string ,
8888 handlePrev : PropTypes . func . isRequired ,
8989 handleNext : PropTypes . func . isRequired ,
9090 nextStep : PropTypes . oneOfType ( [
Original file line number Diff line number Diff line change @@ -95,7 +95,7 @@ WizardStep.propTypes = {
9595 name : PropTypes . oneOfType ( [ PropTypes . string , PropTypes . number ] ) ,
9696 hasNoBodyPadding : PropTypes . bool ,
9797 StepTemplate : PropTypes . elementType ,
98- conditionalSubmitFlag : PropTypes . string . isRequired ,
98+ conditionalSubmitFlag : PropTypes . string ,
9999} ;
100100
101101WizardStep . defaultProps = {
Original file line number Diff line number Diff line change @@ -178,7 +178,7 @@ WizardInternal.propTypes = {
178178 container : PropTypes . instanceOf ( Element ) ,
179179 StepTemplate : PropTypes . elementType ,
180180 className : PropTypes . string ,
181- conditionalSubmitFlag : PropTypes . string . isRequired ,
181+ conditionalSubmitFlag : PropTypes . string ,
182182} ;
183183
184184const defaultLabels = {
You can’t perform that action at this time.
0 commit comments