AAE-51237 Fixing card view item dispatcher change detection under zoneless

This commit is contained in:
Ehsan Rezaei
2026-09-08 15:56:38 +02:00
parent d101d85769
commit f4fd8148a1
@@ -89,6 +89,9 @@ export class CardViewItemDispatcherComponent implements OnChanges {
this.componentReference.instance[changeName] = change.currentValue;
});
// Writing to `.instance` does not mark the view dirty, which zoneless change detection requires.
this.componentReference.changeDetectorRef.markForCheck();
this.proxy('ngOnChanges', changes);
}