@@ -1487,7 +1487,7 @@ class Base extends CoreBase {
14871487 // and we still want to pass it further into subtrees
14881488 me . _needsVdomUpdate = false ;
14891489 me . afterSetNeedsVdomUpdate ?. ( false , true ) ;
1490-
1490+ console . log ( 'update' , me . id , vdom ) ;
14911491 Neo . vdom . Helper . update ( opts ) . catch ( err => {
14921492 me . isVdomUpdating = false ;
14931493 console . log ( 'Error attempting to update component dom' , err , me ) ;
@@ -2296,7 +2296,7 @@ class Base extends CoreBase {
22962296 * hideMode: 'visibility' uses css visibility.
22972297 */
22982298 show ( ) {
2299- const me = this ;
2299+ let me = this ;
23002300
23012301 if ( me . hideMode !== 'visibility' ) {
23022302 delete me . vdom . removeDom ;
@@ -2323,7 +2323,7 @@ class Base extends CoreBase {
23232323 * @param {Object } [vdom=this.vdom]
23242324 * @param {Boolean } force=false
23252325 */
2326- syncVdomIds ( vnode = this . vnode , vdom = this . vdom , force = false ) {
2326+ syncVdomIds ( vnode = this . vnode , vdom = this . vdom , force = false ) {
23272327 VDomUtil . syncVdomIds ( vnode , vdom , force )
23282328 }
23292329
@@ -2347,6 +2347,9 @@ class Base extends CoreBase {
23472347
23482348 // delegate the latest node updates to all possible child components found inside the vnode tree
23492349 ComponentManager . getChildren ( me ) . forEach ( component => {
2350+ if ( ! component . vdom . id ) {
2351+ console . log ( component . id , component . vdom ) ;
2352+ }
23502353 childVnode = VNodeUtil . findChildVnode ( me . vnode , component . vdom . id ) ;
23512354
23522355 if ( childVnode ) {
0 commit comments