-
-
Notifications
You must be signed in to change notification settings - Fork 334
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
Error using chips on Ember (CLI) 2.13: expected an implementation for 6 #705
Comments
The same error message popped up in #578 but was worked around.. would be good to find out what the real cause is though. |
Thanks for that connexion, @bjornharrtell. I wonder if this is actually a missing tag from the new Glimmer that uses integers to represent tags? |
Thanks to insight from @rwjblue on the Ember Community Slack, it looks like this is a manifestation of this known issue. As he suggested, when I changed the I’ll write about this on that thread. |
Anyone found a simple solution for this issue? |
For now I've just changed |
There is no work around? bc I cannot change back to 2.12 |
Unfortunately I don't think there is a work around except fixing these 2 issues in glimmer : ( glimmerjs/glimmer-vm#493 What's blocking you from dropping back to 2.12? |
FWIW, I am working on those two issues. Hope to have something for the rest of the glimmer team to review tomorrow. Unfortunately, there are some compounding factors in glimmer-vm ATM. Basically, Ember 2.13/2.14 are using glimmer-vm packages at |
Thanks for your great work @rwjblue. @Subtletree , is there any better glimmer perf for your app with 2.13? |
I basically just upgraded to 2.13, hit these issues then dropped back to 2.12 so didn't get a chance to test it. Still have ember-cli 2.13 though so get 🥇 rwjblue! |
Hey guys, do you have any idea when this issue will be fixed? thanks |
There is a good chance it's fixed with the recently released Ember 2.13.3, but have not confirmed yet. Planning to do that today when updating #709. |
Confirmed that Ember 2.13.3 resolves this issue (at least when using Chips as in the demo page). |
Worked for me as well after upgrading to |
To everyone involved in this fix, thank you! |
This issue has been fixed as of #709, so should be closed. |
Thanks to everyone in this thread! adopted-ember-addons/ember-paper#705
It’s true, it worked for me with Ember 2.13.3! Thanks, all. 😀 |
Hey, thanks for all the work on this, it’s been helpful for me to have a lot of UI taken care of so I can focus on business logic.
I tried updating an application to Ember 2.13 today and ran into this error in the console, with part of the UI failing to render:
ember.debug.js:19829 Error: expected an implementation for 6
Stacktrace
I tracked it down to this line in my header template:
I’m admittedly using chips outside their intended purpose, just to show an indicator in the header when you’re viewing a “sandbox” site. I can accomplish this differently without using chips, I was just being lazy about CSS etc.
I’ve removed the use of
paper-chips
for now but hopefully I’ll find some time to look into this and propose a fix.My limited investigation has shown me that the failure is unrelated to the block use; even when I changed the template to this it still produced the same error:
It’s my belief that this relates to Babel 6, based on the text of the error, but it’s pretty mysterious!
The text was updated successfully, but these errors were encountered: