I have the following code:
<li *ngFor="let thing of things">
<a [href]="utilitiesService.convertEndpointToAnchorLink(thing.name)" contentsLink pageScroll>{{
thing.name
}}</a>
</li>
but it gives me the Expression has changed after it was checked error - I have narrowed down the cause being the contentsLink attribute. Implementing the following in my component took the error away, but I was wondering if there is a more proper way this could be handled?
constructor(private cd: ChangeDetectorRef) {}
ngAfterViewInit() {
this.cd.detectChanges();
}
I have the following code:
but it gives me the
Expression has changed after it was checkederror - I have narrowed down the cause being thecontentsLinkattribute. Implementing the following in my component took the error away, but I was wondering if there is a more proper way this could be handled?constructor(private cd: ChangeDetectorRef) {}