fix(identity): add maxResultCount param to GetRoles action in the users component

pull/2761/head
mehmet-erim 5 years ago
parent e1984bf4a1
commit b71a1e74ed

@ -119,7 +119,7 @@ export class UsersComponent implements OnInit {
}
buildForm() {
this.store.dispatch(new GetRoles()).subscribe(() => {
this.store.dispatch(new GetRoles({ maxResultCount: 1000, skipCount: 0 })).subscribe(() => {
this.roles = this.store.selectSnapshot(IdentityState.getRoles);
this.form = this.fb.group({
userName: [this.selected.userName || '', [Validators.required, Validators.maxLength(256)]],

Loading…
Cancel
Save