1

This question is related to: Ember Octane How to Clear Form Errors?

I have been asking a lot of questions on how to upgrade my Ember Classic project to Ember Octane. Some users in the community have suggested that I post an Ember-Twiddle for them to see what is going on. I have tried doing that, but I cannot get it to work. This is another tool for me to learn and I am struggling a bit to make heads or tails of it while trying to also NOT post my entire project as that seems unnecessary.

Why do I not see the page links for change-password and myroute2?

https://ember-twiddle.com/364eaf05a2e1072994b61f255032eb62?openFiles=templates.application%5C.hbs%2C

J Weezy
  • 3,507
  • 3
  • 32
  • 88

1 Answers1

2

The hint is the browser's console:

devtools

you first trying to extend your change-password from unknown mixin and after fixing that you'd see another error re unknown services in the change-password controllers. Comment them out and everything works.

Andrey Stukalin
  • 5,328
  • 2
  • 31
  • 50
  • Your answer works and I have saved the corrections - thank you. I hope you don't mind a follow-up question, but I am not getting any output on the myroute2 link? There is no error in the console. Can you please advise what is wrong? – J Weezy Apr 10 '20 at 05:17
  • 1
    Yep, you need to add a route template, under `/templates/clients/myroute2.hbs` – Andrey Stukalin Apr 10 '20 at 07:58