Skip to content
New issue

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

Can't nest routes under home path anymore in 2.7? #14073

Closed
danconnell opened this issue Aug 16, 2016 · 4 comments
Closed

Can't nest routes under home path anymore in 2.7? #14073

danconnell opened this issue Aug 16, 2016 · 4 comments

Comments

@danconnell
Copy link

danconnell commented Aug 16, 2016

https://ember-twiddle.com/8627acbb0ddd9593e20ad67e9a721941?openFiles=router.js%2C&route=%2Ftest2

Given these 2 routes:

  this.route('test1', {
    path: '/'
  }, function() {
   this.route('test2'); 
  });
  this.route('misc', {
    path: '/:param'
  });

If you visit the URL /test2, the misc route is used instead of test1/test2

@rwjblue
Copy link
Member

rwjblue commented Aug 16, 2016

This seems like a variation of #13960.

/cc @mixonic @nathanhammond

@nathanhammond
Copy link
Member

Confirmed, this is an issue.

@rwjblue
Copy link
Member

rwjblue commented Aug 31, 2016

Ember 2.7.2 was released to fix this issue.

@danconnell - Can you confirm this is fixed?

@danconnell
Copy link
Author

Confirmed, this is fixed in 2.7.2. Thanks!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

3 participants