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
Render async is not working as a result. Any tips for debugging?
= content_for :render_async = render_async my_path do ...
<div id="render_async_44dbb2c2501634604700">...</div>
I'm using Turbolinks and Webpacker (if that's relevant).
Note that I was using layout: false and no layout. I tried adding to application layout but the same result.
layout: false
Another thing I tried is adding a breakpoint to my view to check the value of content_for :render_async and the result is nil.
content_for :render_async
The text was updated successfully, but these errors were encountered:
Okay, I fixed this.
= content_for :render_async has to be placed AFTER render_async
= content_for :render_async
Sorry, something went wrong.
No branches or pull requests
Render async is not working as a result. Any tips for debugging?
I'm using Turbolinks and Webpacker (if that's relevant).
Note that I was using
layout: false
and no layout. I tried adding to application layout but the same result.Another thing I tried is adding a breakpoint to my view to check the value of
content_for :render_async
and the result is nil.The text was updated successfully, but these errors were encountered: