diff --git a/src/tabs/tabset.component.ts b/src/tabs/tabset.component.ts index 3a69bfc7df..a7c66cb6b9 100644 --- a/src/tabs/tabset.component.ts +++ b/src/tabs/tabset.component.ts @@ -93,8 +93,8 @@ export class TabsetComponent implements OnDestroy { tab.removed.emit(tab); } this.tabs.splice(index, 1); - if(tab.elementRef.nativeElement && tab.elementRef.nativeElement.remove) { - tab.elementRef.nativeElement.remove(); + if (tab.elementRef.nativeElement.parentNode) { + tab.elementRef.nativeElement.parentNode.removeChild(tab.elementRef.nativeElement); } }