"><img> to paste in an image
Hi,
Here are some general steps and ideas that might help you:
Make sure that your Permission List is bound to the dynamic data using Angular's data binding. If you're using *NgFor, your Permission List should be an array or iterable that you loop through in the template.
<div *ngFor="let permission of permissionList">
<!-- Display permission details here -->
</div>
// Assuming you have a service to fetch dynamic data
this.permissionService.getPermissions().subscribe(data => {
this.permissionList = data;
});
import { ChangeDetectorRef } from "@angular/core";
constructor(private cdr: ChangeDetectorRef) {}
// ...
// After updating the permissionList
this.cdr.detectChanges();