@rh-support/troubleshoot 2.6.135 → 2.6.136
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.
|
@@ -265,10 +265,10 @@ function WizardMain(props) {
|
|
|
265
265
|
RouteUtils.navigateToSection(props.routeProps, `${props.routeProps.location.pathname}/${step.id}`, false);
|
|
266
266
|
};
|
|
267
267
|
const onBack = (step, prevStep) => {
|
|
268
|
-
// isLoadingRecommendations needs to be set to false when going back TO the summary step
|
|
268
|
+
// isLoadingRecommendations needs to be set to false when going back TO the summary/troubleshoot step
|
|
269
269
|
// because it can cause the next button to be permanently disabled if the debounce is not called
|
|
270
270
|
// before going back a step. This can be caused if navigating quickly to then away from the recommendations page.
|
|
271
|
-
if (step.id === AppRouteSections.SUMMARIZE) {
|
|
271
|
+
if (step.id === AppRouteSections.SUMMARIZE || step.id === AppRouteSections.TROUBLESHOOT) {
|
|
272
272
|
recommendationDispatch({
|
|
273
273
|
type: RecommendationsConstants.setIsLoadingRecommendations,
|
|
274
274
|
payload: { isLoadingRecommendations: false },
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@rh-support/troubleshoot",
|
|
3
|
-
"version": "2.6.
|
|
3
|
+
"version": "2.6.136",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"access": "public",
|
|
6
6
|
"registry": "https://registry.npmjs.org"
|
|
@@ -133,5 +133,5 @@
|
|
|
133
133
|
"defaults and supports es6-module",
|
|
134
134
|
"maintained node versions"
|
|
135
135
|
],
|
|
136
|
-
"gitHead": "
|
|
136
|
+
"gitHead": "7d4dbe0e743fbcab5ee69035b77d12baab840c40"
|
|
137
137
|
}
|