You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi, seems like there is a problem with the latest 0.10.0 release.
On my app, I always get that api._popperElement is undefined. I think this is because the API tries to get the _popperElement computed property before it returns.
the REF modifier sets the computed prop _popperElement in ember-popper-base.
Before that set returns, _updatePopperis called
at the end of _updatePopper, registerAPI is called with _getPublicAPI
Inside _getPublicAPI you are calling _getPopperElement which returns _popperElement.
Since the SET of _popperElement (point 1 abose) hasn't returned yet, it is still null.
Hi, seems like there is a problem with the latest 0.10.0 release.
On my app, I always get that
api._popperElement
is undefined. I think this is because the API tries to get the_popperElement
computed property before it returns._popperElement
inember-popper-base
._updatePopper
is called_updatePopper
,registerAPI
is called with_getPublicAPI
_getPublicAPI
you are calling_getPopperElement
which returns_popperElement
._popperElement
(point 1 abose) hasn't returned yet, it is still null.Tested on [email protected] or even @3.9.
The text was updated successfully, but these errors were encountered: