Skip to content

Commit cefe9ba

Browse files
committed
Bug 1507753 - Make config page and environment tab actions consistent
1 parent 14188ec commit cefe9ba

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

app/views/directives/edit-environment-variables.html

+2-2
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,8 @@ <h3>Container {{container.name}}</h3>
2929
key-validator="[A-Za-z_][A-Za-z0-9_]*"
3030
key-validator-error="Please enter a valid key."
3131
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."
32-
add-row-link="Add Value"
33-
add-row-with-selectors-link="Add Value from Config Map or Secret"
32+
add-row-link="Add Environment Variable"
33+
add-row-with-selectors-link="Add Environment Variable Using a Config Map or Secret"
3434
show-header>
3535
</key-value-editor>
3636

dist/scripts/templates.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -6790,7 +6790,7 @@ angular.module('openshiftConsoleTemplates', []).run(['$templateCache', function(
67906790
"<key-value-editor ng-if=\"container.env.length\" entries=\"container.env\" key-placeholder=\"Name\" value-placeholder=\"Value\" cannot-add cannot-sort cannot-delete is-readonly show-header>\n" +
67916791
"</key-value-editor>\n" +
67926792
"</div>\n" +
6793-
"<key-value-editor ng-if=\"$ctrl.canIUpdate && !$ctrl.ngReadonly\" entries=\"container.env\" key-placeholder=\"Name\" value-placeholder=\"Value\" value-from-selector-options=\"$ctrl.valueFromObjects\" 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 Value\" add-row-with-selectors-link=\"Add Value from Config Map or Secret\" show-header>\n" +
6793+
"<key-value-editor ng-if=\"$ctrl.canIUpdate && !$ctrl.ngReadonly\" entries=\"container.env\" key-placeholder=\"Name\" value-placeholder=\"Value\" value-from-selector-options=\"$ctrl.valueFromObjects\" 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\" add-row-with-selectors-link=\"Add Environment Variable Using a Config Map or Secret\" show-header>\n" +
67946794
"</key-value-editor>\n" +
67956795
"<h4 class=\"section-label\">\n" +
67966796
"Environment From\n" +

0 commit comments

Comments
 (0)