|
@ -137,8 +137,8 @@ export class UserAccountAccessComponent implements OnDestroy, OnInit { |
|
|
this.dataService |
|
|
this.dataService |
|
|
.fetchAccesses() |
|
|
.fetchAccesses() |
|
|
.pipe(takeUntil(this.unsubscribeSubject)) |
|
|
.pipe(takeUntil(this.unsubscribeSubject)) |
|
|
.subscribe((response) => { |
|
|
.subscribe((accesses) => { |
|
|
this.accesses = response; |
|
|
this.accesses = accesses; |
|
|
|
|
|
|
|
|
this.changeDetectorRef.markForCheck(); |
|
|
this.changeDetectorRef.markForCheck(); |
|
|
}); |
|
|
}); |
|
|