Skip to content

Commit 656a0da

Browse files
simonzhzhuQianChenglong
authored andcommitted
fix: installer step bug
1 parent fc98527 commit 656a0da

File tree

3 files changed

+132
-132
lines changed

3 files changed

+132
-132
lines changed

cmd/tke-installer/assets/assets.go

Lines changed: 129 additions & 129 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

web/installer/public/static/js/installer.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

web/installer/src/modules/installer/actions/installerActions.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ const fetchClusterActions = generateFetcherActionCreator({
2626
case 'Doing':
2727
case 'Success':
2828
case 'Failed':
29-
dispatch(restActions.stepNext('step10'));
29+
dispatch(restActions.stepNext('step9'));
3030
break;
3131
default:
3232
dispatch(restActions.stepNext('step1'));
@@ -55,7 +55,7 @@ const workflowActions = {
5555
let { createCluster } = getState();
5656
if (isSuccessWorkflow(createCluster)) {
5757
dispatch(installerActions.createCluster.reset());
58-
dispatch(installerActions.stepNext('step10'));
58+
dispatch(installerActions.stepNext('step9'));
5959
dispatch(installerActions.poll());
6060
}
6161
}

0 commit comments

Comments
 (0)