Skip to content

Commit fe0a53b

Browse files
committed
Fix bug displaying read-only build config env vars
The read-only view was incorrectly inside a `canI : 'update'` block.
1 parent 7e59143 commit fe0a53b

File tree

2 files changed

+11
-11
lines changed

2 files changed

+11
-11
lines changed

app/views/browse/build-config.html

+10-10
Original file line numberDiff line numberDiff line change
@@ -458,16 +458,6 @@ <h3>Environment Variables</h3>
458458
key-validator-error-tooltip="A valid environment variable name is an alphanumeric (a-z and 0-9) string beginning with a letter that may contain underscores."
459459
add-row-link="Add Environment Variable"
460460
show-header></key-value-editor>
461-
<key-value-editor
462-
ng-if="!('buildconfigs' | canI : 'update')"
463-
entries="envVars"
464-
key-placeholder="Name"
465-
value-placeholder="Value"
466-
is-readonly
467-
cannot-add
468-
cannot-sort
469-
cannot-delete
470-
show-header></key-value-editor>
471461
<button
472462
class="btn btn-default"
473463
ng-click="saveEnvVars()"
@@ -479,6 +469,16 @@ <h3>Environment Variables</h3>
479469
class="mar-left-sm"
480470
style="vertical-align: -2px;">Clear Changes</a>
481471
</div>
472+
<key-value-editor
473+
ng-if="!('buildconfigs' | canI : 'update')"
474+
entries="envVars"
475+
key-placeholder="Name"
476+
value-placeholder="Value"
477+
is-readonly
478+
cannot-add
479+
cannot-sort
480+
cannot-delete
481+
show-header></key-value-editor>
482482
</ng-form>
483483
</uib-tab>
484484
</uib-tabset>

dist/scripts/templates.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -2157,10 +2157,10 @@ angular.module('openshiftConsoleTemplates', []).run(['$templateCache', function(
21572157
"<ng-form name=\"forms.bcEnvVars\">\n" +
21582158
"<div ng-if=\"'buildconfigs' | canI : 'update'\">\n" +
21592159
"<key-value-editor entries=\"envVars\" key-placeholder=\"Name\" value-placeholder=\"Value\" key-validator=\"[A-Za-z_][A-Za-z0-9_]*\" key-validator-error=\"Please enter a valid key\" key-validator-error-tooltip=\"A valid environment variable name is an alphanumeric (a-z and 0-9) string beginning with a letter that may contain underscores.\" add-row-link=\"Add Environment Variable\" show-header></key-value-editor>\n" +
2160-
"<key-value-editor ng-if=\"!('buildconfigs' | canI : 'update')\" entries=\"envVars\" key-placeholder=\"Name\" value-placeholder=\"Value\" is-readonly cannot-add cannot-sort cannot-delete show-header></key-value-editor>\n" +
21612160
"<button class=\"btn btn-default\" ng-click=\"saveEnvVars()\" ng-disabled=\"forms.bcEnvVars.$pristine || forms.bcEnvVars.$invalid\">Save</button>\n" +
21622161
"<a ng-if=\"!forms.bcEnvVars.$pristine\" href=\"\" ng-click=\"clearEnvVarUpdates()\" class=\"mar-left-sm\" style=\"vertical-align: -2px\">Clear Changes</a>\n" +
21632162
"</div>\n" +
2163+
"<key-value-editor ng-if=\"!('buildconfigs' | canI : 'update')\" entries=\"envVars\" key-placeholder=\"Name\" value-placeholder=\"Value\" is-readonly cannot-add cannot-sort cannot-delete show-header></key-value-editor>\n" +
21642164
"</ng-form>\n" +
21652165
"</uib-tab>\n" +
21662166
"</uib-tabset>\n" +

0 commit comments

Comments
 (0)