File tree 1 file changed +4
-2
lines changed
1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -36,14 +36,16 @@ class InElementSupportProvider {
36
36
const didAppendNode = NewElementBuilder . prototype . didAppendNode ;
37
37
NewElementBuilder . prototype . didAppendNode = function ( ...args ) {
38
38
const parent = this . env . debugRenderTree . stack . current ;
39
- args [ 0 ] . __emberInspectorParentNode = this . env . debugRenderTree . nodeFor ( parent ) ;
39
+ args [ 0 ] . __emberInspectorParentNode =
40
+ this . env . debugRenderTree . nodeFor ( parent ) ;
40
41
return didAppendNode . call ( this , ...args ) ;
41
42
} ;
42
43
43
44
const pushElement = NewElementBuilder . prototype . pushElement ;
44
45
NewElementBuilder . prototype . pushElement = function ( ...args ) {
45
46
const parent = this . env . debugRenderTree . stack . current ;
46
- args [ 0 ] . __emberInspectorParentNode = this . env . debugRenderTree . nodeFor ( parent ) ;
47
+ args [ 0 ] . __emberInspectorParentNode =
48
+ this . env . debugRenderTree . nodeFor ( parent ) ;
47
49
return pushElement . call ( this , ...args ) ;
48
50
} ;
49
51
You can’t perform that action at this time.
0 commit comments