Skip to content

Commit

Permalink
Try to fix vr and f tests in Angular
Browse files Browse the repository at this point in the history
  • Loading branch information
dk981234 committed May 29, 2024
1 parent 43ce715 commit d1520cd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/survey-angular-ui/src/base-angular.ts
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ export abstract class BaseAngular<T extends Base = Base> extends EmbeddedViewCon
protected afterUpdate(isSync: boolean = false): void {
this.setIsRendering(false);
const model = this.getModel();
if(model) {
if(model && !this.isDestroyed) {
model.afterRerender();
}
}
Expand Down

0 comments on commit d1520cd

Please sign in to comment.