👨💻 Tech Lead @madebyon_com
🌍 Slow traveling the world, as modern day nomad
<%= render partial: 'shared/form_label', locals: { ... } %>
<%= form.text_field attribute_name, options %>
<%= render partial: 'shared/form_label', locals: { ... } %>
<%= form.text_field attribute_name, options %>
However that partial renders the form input first and then all other partials, so it's not in order as defined in partial 🤯, so it's not in the order as in the erb file.
However that partial renders the form input first and then all other partials, so it's not in order as defined in partial 🤯, so it's not in the order as in the erb file.
render Phlex::Rails::Partial.new("...") actually resolves that issue 🙌
render Phlex::Rails::Partial.new("...") actually resolves that issue 🙌
Any thoughts?
Any thoughts?