The Error
ExpressionChangedAfterItHasBeenCheckedError: Expression has changed after it was checked.
Common Cause: Setting data in ngAfterViewInit
import { ChangeDetectorRef } from '@angular/core';
export class MyComponent implements AfterViewInit {
title = '';
constructor(private cdr: ChangeDetectorRef) {}
ngAfterViewInit() {
this.title = 'Hello';
this.cdr.detectChanges();
}
}