Skip to content

Commit 020f993

Browse files
Merge pull request #2411 from benjaminapetersen/membership/service-account-without-a-namespace
Automatic merge from submit-queue. Fix adding role to service account where namespace is sometimes missed This PR addresses an inconsistency. Watch the gif to the end: ![2017-10-31 15 36 47](https://user-images.githubusercontent.com/280512/32245466-3966c316-be52-11e7-99c3-f135e8845cc2.gif) The change is simple. I'm not 100% sure why the edit worked fine the first new service account but not the second. @jwforres @spadgett
2 parents a3423f8 + 5df981c commit 020f993

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

app/views/membership.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -142,7 +142,7 @@ <h3>
142142
</ui-select>
143143
<button
144144
ng-disabled="disableAddForm || (!subject.newRole)"
145-
ng-click="addRoleTo(subject.name, subjectKind.name, subject.newRole)"
145+
ng-click="addRoleTo(subject.name, subjectKind.name, subject.newRole, subject.namespace)"
146146
class="btn btn-default add-role-to">
147147
Add
148148
</button>

dist/scripts/templates.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -10718,7 +10718,7 @@ angular.module('openshiftConsoleTemplates', []).run(['$templateCache', function(
1071810718
"</div>\n" +
1071910719
"</ui-select-choices>\n" +
1072010720
"</ui-select>\n" +
10721-
"<button ng-disabled=\"disableAddForm || (!subject.newRole)\" ng-click=\"addRoleTo(subject.name, subjectKind.name, subject.newRole)\" class=\"btn btn-default add-role-to\">\n" +
10721+
"<button ng-disabled=\"disableAddForm || (!subject.newRole)\" ng-click=\"addRoleTo(subject.name, subjectKind.name, subject.newRole, subject.namespace)\" class=\"btn btn-default add-role-to\">\n" +
1072210722
"Add\n" +
1072310723
"</button>\n" +
1072410724
"</div>\n" +

0 commit comments

Comments
 (0)