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
I use ember-wormhole (https://github.com/yapplabs/ember-wormhole) for modal dialogs in my app. When an "outer" component has an "inner" component that's inside a wormhole, and the "inner" component sends an action, the action used to be fired on the "outer" component. Since PR #12289, the action is fired on the wormhole itself, which causes the error:
Uncaught Error: <emberapp@component:ember-wormhole::ember609> had no action handler for: actionName
Note that this is only an error if the "inner" component and wormhole are defined in an "outer" component template; the action works fine if the component/wormhole are in a controller template.
I use
ember-wormhole
(https://github.com/yapplabs/ember-wormhole) for modal dialogs in my app. When an "outer" component has an "inner" component that's inside a wormhole, and the "inner" component sends an action, the action used to be fired on the "outer" component. Since PR #12289, the action is fired on the wormhole itself, which causes the error:Note that this is only an error if the "inner" component and wormhole are defined in an "outer" component template; the action works fine if the component/wormhole are in a controller template.
This fiddle reproduces the issue: http://ember-twiddle.com/1c59a1dcdb18eec69a8e. Changing the ember dependency from
canary
torelease
intwiddle.json
fixes the issue.The text was updated successfully, but these errors were encountered: