Skip to content

Commit

Permalink
Merge pull request #65 from RobatBender/bug/fix-clusterrole-creation
Browse files Browse the repository at this point in the history
fix wrong clusterrole name creation
  • Loading branch information
Rampage1xx authored May 11, 2021
2 parents c63e017 + 5e5232e commit 6e2909b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion web-client/src/services/rolebindingCreateRequests.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -192,7 +192,7 @@ export class RolebindingCreateRequests {
return;
}

const roleName = username + resourceSeparator + this.getRoleName(clusterAccess);
const roleName = this.getRoleName(clusterAccess);

const clusterRolebindingName = username + resourceSeparator + roleName

Expand Down

0 comments on commit 6e2909b

Please sign in to comment.