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
Phlex deprecated the Checkbox and CheckboxTag modules in Phlex 1.2.0. There are now camel-cased: CheckBox and CheckBoxTag.
Checkbox
CheckboxTag
CheckBox
CheckBoxTag
https://github.com/phlex-ruby/phlex-rails/releases/tag/1.2.0
ERB Input:
<%= form_for do |f| %> <%= f.check_box %> <%= check_box_tag %> <% end %>
Output:
class Component < Phlex::HTML include Phlex::Rails::Helpers::Checkbox include Phlex::Rails::Helpers::CheckboxTag include Phlex::Rails::Helpers::FormFor def view_template form_for do |f| plain f.check_box check_box_tag end end end
Expected output:
class Component < Phlex::HTML include Phlex::Rails::Helpers::CheckBox include Phlex::Rails::Helpers::CheckBoxTag include Phlex::Rails::Helpers::FormFor def view_template form_for do |f| plain f.check_box check_box_tag end end end
The text was updated successfully, but these errors were encountered:
Thanks for opening this @jaywhy! The code for figuring this out is all dynamic, but we are using an older version of Phlex to figure out the modules.
I think if we can get #447 merged this should be resolved
Sorry, something went wrong.
No branches or pull requests
Phlex deprecated the
Checkbox
andCheckboxTag
modules in Phlex 1.2.0. There are now camel-cased:CheckBox
andCheckBoxTag
.https://github.com/phlex-ruby/phlex-rails/releases/tag/1.2.0
ERB Input:
Output:
Expected output:
The text was updated successfully, but these errors were encountered: