ExpressionChangedAfterItHasBeenCheckedError: Expression has changed after it was checked. Previous value: 'maxWidth: 0'. Current value: 'maxWidth: 80'. code example
Example: ExpressionChangedAfterItHasBeenCheckedError: Expression has changed after it was checked. Previous value: 'ngIf: [object Object]'. Current value: 'ngIf: true'.
import { ChangeDetectorRef,AfterContentChecked} from '@angular/core'
export class example implements OnInit, AfterContentChecked {
ngAfterContentChecked() : void {
this.changeDetector.detectChanges();
}
}