We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a93c771 commit a9b1063Copy full SHA for a9b1063
packages/angular/src/lib/nativescript-renderer.ts
@@ -266,7 +266,7 @@ class NativeScriptRenderer implements Renderer2 {
266
@modifiesDom()
267
removeChild(parent: any, oldChild: any, isHostElement?: boolean): void {
268
if (NativeScriptDebug.enabled) {
269
- NativeScriptDebug.rendererLog(`NativeScriptRenderer.removeChild child: ${oldChild} parent: ${parent}`);
+ NativeScriptDebug.rendererLog(`NativeScriptRenderer.removeChild child: ${oldChild} parent: ${parent} oldChild.parentNode: ${oldChild?.parentNode}`);
270
}
271
this.viewUtil.removeChild(parent ?? oldChild.parentNode, oldChild);
272
0 commit comments