We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I believe this is related to a regression in Ember 2.13.0-beta, but I thought I'd file an issue in order to track it. We are getting an error in href-to here: https://github.com/intercom/ember-href-to/blob/master/addon/helpers/href-to.js#L6 when testing:
href-to
const $result = Ember.$(`<div>${helper.compute([ event ])}</div>`); assert.equal($result.text(), 'Version 511 was activated', 'full text');
Where our helper simply calls hrefTo:
helper
hrefTo
hrefTo('configure.service.version', version)
The fix to this was to change the aforementioned like 6 in href-to.js to:
href-to.js
const container = getOwner(context) || context.container; let router = container.lookup('router:main');
which was recommended in a similar issue in the torii project, here: https://github.com/Vestorly/torii/issues/349#issuecomment-302141236
torii
The text was updated successfully, but these errors were encountered:
Related to: emberjs/ember.js#15492
Sorry, something went wrong.
anyone have a reproduction or specific Safari versions/platforms?
No branches or pull requests
I believe this is related to a regression in Ember 2.13.0-beta, but I thought I'd file an issue in order to track it. We are getting an error in
href-to
here: https://github.com/intercom/ember-href-to/blob/master/addon/helpers/href-to.js#L6 when testing:Where our
helper
simply callshrefTo
:The fix to this was to change the aforementioned like 6 in
href-to.js
to:which was recommended in a similar issue in the
torii
project, here: https://github.com/Vestorly/torii/issues/349#issuecomment-302141236The text was updated successfully, but these errors were encountered: