Hello themes i have a mMetronic angular demo and it's great but when i am trying bind *NgFor directive with a variable of objects that come from my APi the div with for on it won't appear and it disappear and {--bindings--} shows instead .
Thanks in advance .
It seems like you are encountering an issue with binding data from your API to the *ngFor directive in your Metronic Angular demo. The appearance of {--bindings--} suggests that there might be an error or an issue with the data binding.
Here are a few things to check and consider:
Ensure that the data you are fetching from your API is in the correct format and structure. It should be an array of objects if you are using *ngFor to iterate over it.
If you are fetching data asynchronously, make sure to use the Angular async pipe in your template. For example:
<div *ngFor="let item of items$ | async">{{ item.property }}</div>