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
The router service allows query-param only transitions:
this.router.transitionTo({ queryParams: { commentsAfter: latestComment } });
However, the logic for EngineRouterService does not handle this: https://github.com/villander/ember-engines-router-service/blob/master/addon/services/engine-router-service.js#L64
EngineRouterService
The problem seems to be that if routeName does not resemble a URL, it still tries to use routeName as the arg.
routeName
The text was updated successfully, but these errors were encountered:
@lougreenwood could you please provide a minimal reproduction?
Sorry, something went wrong.
I'm closing this issue for inactivity and will reopen once someone reply with a minimal reproduction 😄
No branches or pull requests
The router service allows query-param only transitions:
However, the logic for
EngineRouterService
does not handle this: https://github.com/villander/ember-engines-router-service/blob/master/addon/services/engine-router-service.js#L64The problem seems to be that if
routeName
does not resemble a URL, it still tries to userouteName
as the arg.The text was updated successfully, but these errors were encountered: