-
-
Notifications
You must be signed in to change notification settings - Fork 4.2k
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
Regression: Nested {{render}} helpers result in Uncaught TypeError #10827
Comments
I believe I just hit this as well |
I'm looking forward to a fix for this regression. Thanks |
I can confirm this regression as well. After banging my head for a little bit I realized this was the problem with the nested +@ef4 |
I see the problem. The render helper impersonates an outlet, but not well enough for when it is its own recursive child. It needs to get a I don't know if I'll be able to get to this right away, if somebody else wants to take a stab at it it shouldn't be too difficult. Update the |
+1, having same problems |
+1 |
Here's the same example from above using the PR build: http://emberjs.jsbin.com/jolisu/1/edit?html,js,console,output |
Just hit the same thing. |
I notice this issue was left open after the PR was merged. @rwjblue Is there anything left pending that I can help with? |
@awaer - I need to cherry-pick the fix up from stable branch, so I left the issue open. Just pulled in those commits, so closing now (thanks for the reminder!)... |
@rwjblue any info on a 1.11.2 release for this regression? is there anything I can help with? |
@rwjblue I'm getting bit by this bug in 1.11.2. Was there a solution somewhere? If so, I'm unable to locate it. Thanks! |
@ChrisHonniball - Update to 1.11.3. |
Oh thank you! I read this post SECURITY AND BUGFIX RELEASES - EMBER 1.10.1, 1.11.2, 1.11.3 and stopped at 1.11.2... Sorry. Now on to deprecations! ✊ |
Using nested {{render}} helpers results in
Uncaught TypeError: undefined is not a function.
It seems this began with the changes made in #10602 (d8a16a4) for 1.11.0.This JSBin reproduces a simple example: http://emberjs.jsbin.com/moxugi/1/edit?html,js,console,output
(carried over from #10760)
The text was updated successfully, but these errors were encountered: