fix(console): role create (#715)

* fix: add projectid

* lint
This commit is contained in:
Max Peintner 2020-09-09 11:43:36 +02:00 committed by GitHub
parent 619d194044
commit 8aaaca7d00
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 0 deletions

View File

@ -89,6 +89,7 @@ export class ProjectRoleCreateComponent implements OnInit, OnDestroy {
role.setKey(element.key);
role.setDisplayName(element.displayName);
role.setGroup(element.group);
role.setId(this.projectId);
return role;
});

View File

@ -1,5 +1,6 @@
// Custom Theming for Angular Material
// For more information: https://material.angular.io/guide/theming
@import '~@angular/material/theming';
@import './component-themes';