Skip to content

Commit 765acd8

Browse files
committed
Fix bug where wrong next steps message can be displayed
1 parent 0bb17eb commit 765acd8

File tree

2 files changed

+8
-1
lines changed

2 files changed

+8
-1
lines changed

app/views/directives/process-template-dialog/process-template-results.html

+6
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
<div class="order-service-config">
2+
<!--
3+
Make sure we don't initialize the next-steps component until the wizard is
4+
complete. Otherwise it tries to set and clear the template message too soon
5+
(when the dialog is displayed, before the template is instantiated).
6+
-->
27
<next-steps
8+
ng-if="$ctrl.wizardDone"
39
project="$ctrl.selectedProject"
410
project-name="$ctrl.selectedProject.metadata.name"
511
login-base-url="$ctrl.loginBaseUrl"

dist/scripts/templates.js

+2-1
Original file line numberDiff line numberDiff line change
@@ -9047,7 +9047,8 @@ angular.module('openshiftConsoleTemplates', []).run(['$templateCache', function(
90479047

90489048
$templateCache.put('views/directives/process-template-dialog/process-template-results.html',
90499049
"<div class=\"order-service-config\">\n" +
9050-
"<next-steps project=\"$ctrl.selectedProject\" project-name=\"$ctrl.selectedProject.metadata.name\" login-base-url=\"$ctrl.loginBaseUrl\" on-continue=\"$ctrl.close\" show-project-name=\"$ctrl.showProjectName\" name=\"$ctrl.template | displayName\">\n" +
9050+
"\n" +
9051+
"<next-steps ng-if=\"$ctrl.wizardDone\" project=\"$ctrl.selectedProject\" project-name=\"$ctrl.selectedProject.metadata.name\" login-base-url=\"$ctrl.loginBaseUrl\" on-continue=\"$ctrl.close\" show-project-name=\"$ctrl.showProjectName\" name=\"$ctrl.template | displayName\">\n" +
90519052
"</next-steps>\n" +
90529053
"</div>"
90539054
);

0 commit comments

Comments
 (0)