Hello we bought metronic for use angular version
But we saw a problem about recieving async data.
when we get some data from services data is coming but not showing on screen until i click it twice.
I think theme 3rd part tools blocking something. or its taking css nad html files async.
for better show i upload youtube here is problem:
https://www.youtube.com/watch?v=N1S6dp8GtGI
Hi,
We used onPush change detection strategy for performance. You can disable this by removing changeDetection: ChangeDetectionStrategy.OnPush
.
Or you can use below code to manually update the UI render.
constructor(private cd: ChangeDetectorRef) {}
refresh() {
this.cd.detectChanges();
}