Skip to content

Commit 7fdc29a

Browse files
Merge pull request #2429 from spadgett/fix-template-msg
Automatic merge from submit-queue. Fix bug where wrong next steps message can be displayed /assign @jwforres Fixes #2427
2 parents 84d6d04 + 765acd8 commit 7fdc29a

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
@@ -9053,7 +9053,8 @@ angular.module('openshiftConsoleTemplates', []).run(['$templateCache', function(
90539053

90549054
$templateCache.put('views/directives/process-template-dialog/process-template-results.html',
90559055
"<div class=\"order-service-config\">\n" +
9056-
"<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" +
9056+
"\n" +
9057+
"<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" +
90579058
"</next-steps>\n" +
90589059
"</div>"
90599060
);

0 commit comments

Comments
 (0)