Skip to content

Commit 250ba44

Browse files
committed
Bug 1492949 - Don't prompt for project processing template from YAML
Fixes https://bugzilla.redhat.com/show_bug.cgi?id=1492949
1 parent 6f40623 commit 250ba44

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

app/views/directives/from-file-dialog.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@
6262
<div class="osc-form">
6363
<alerts alerts="$ctrl.alerts"></alerts>
6464
<form name="$ctrl.templateForm">
65-
<process-template project="$ctrl.project" template="$ctrl.template" alerts="$ctrl.alerts" is-dialog="true"></process-template>
65+
<process-template project="$ctrl.selectedProject" template="$ctrl.template" alerts="$ctrl.alerts" is-dialog="true"></process-template>
6666
</form>
6767
</div>
6868
</div>

dist/scripts/templates.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -7022,7 +7022,7 @@ angular.module('openshiftConsoleTemplates', []).run(['$templateCache', function(
70227022
"<div class=\"osc-form\">\n" +
70237023
"<alerts alerts=\"$ctrl.alerts\"></alerts>\n" +
70247024
"<form name=\"$ctrl.templateForm\">\n" +
7025-
"<process-template project=\"$ctrl.project\" template=\"$ctrl.template\" alerts=\"$ctrl.alerts\" is-dialog=\"true\"></process-template>\n" +
7025+
"<process-template project=\"$ctrl.selectedProject\" template=\"$ctrl.template\" alerts=\"$ctrl.alerts\" is-dialog=\"true\"></process-template>\n" +
70267026
"</form>\n" +
70277027
"</div>\n" +
70287028
"</div>\n" +

0 commit comments

Comments
 (0)