Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fixed #8044 AccordionTab throwing ViewDestroyedError during unit testing #8127

Merged
merged 1 commit into from
Oct 7, 2019
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion src/app/components/accordion/accordion.ts
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,9 @@ export class AccordionTab implements OnDestroy {
}
set animating(val: boolean) {
this._animating = val;
this.changeDetector.detectChanges();

if (!this.isDestroyed)
this.changeDetector.detectChanges();
}

contentTemplate: TemplateRef<any>;
Expand All @@ -85,6 +87,8 @@ export class AccordionTab implements OnDestroy {

accordion: Accordion;

isDestroyed: boolean = false;

constructor(@Inject(forwardRef(() => Accordion)) accordion, public changeDetector: ChangeDetectorRef) {
this.accordion = accordion as Accordion;
}
Expand Down Expand Up @@ -161,6 +165,7 @@ export class AccordionTab implements OnDestroy {

ngOnDestroy() {
this.accordion.tabs.splice(this.findTabIndex(), 1);
this.isDestroyed = true;
}
}

Expand Down