orc-shared 5.8.0-dev.22 → 5.8.0-dev.23
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -195,7 +195,9 @@ var StepperModal = function StepperModal(_ref) {
|
|
|
195
195
|
variant: "contained",
|
|
196
196
|
color: "primary",
|
|
197
197
|
disabled: nextDisabled,
|
|
198
|
-
onClick:
|
|
198
|
+
onClick: function onClick() {
|
|
199
|
+
return nextClick();
|
|
200
|
+
},
|
|
199
201
|
disableElevation: true
|
|
200
202
|
}, /*#__PURE__*/_react.default.createElement(_reactIntl.FormattedMessage, _sharedMessages.default.next))), currentStep === steps.length - 1 && /*#__PURE__*/_react.default.createElement(_Button.default, {
|
|
201
203
|
variant: "contained",
|
package/package.json
CHANGED
|
@@ -180,7 +180,13 @@ const StepperModal = ({
|
|
|
180
180
|
</Button>
|
|
181
181
|
))
|
|
182
182
|
) : (
|
|
183
|
-
<Button
|
|
183
|
+
<Button
|
|
184
|
+
variant="contained"
|
|
185
|
+
color="primary"
|
|
186
|
+
disabled={nextDisabled}
|
|
187
|
+
onClick={() => nextClick()}
|
|
188
|
+
disableElevation
|
|
189
|
+
>
|
|
184
190
|
<FormattedMessage {...sharedMessages.next} />
|
|
185
191
|
</Button>
|
|
186
192
|
))}
|