You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm using auto_html5_validation: false option for form_for tag with model object namespace.
ex:
<%= form_for([:admin, @client], auto_html5_validation: false) do |f| %>
so, it doesn't work.
because
variables named 'record' is Array...
in html5_validators's form_helpers.rb L:22
The text was updated successfully, but these errors were encountered:
I'm using
auto_html5_validation: false
option forform_for
tag with model object namespace.ex:
<%= form_for([:admin, @client], auto_html5_validation: false) do |f| %>
so, it doesn't work.
because
variables named 'record' is Array...
in html5_validators's form_helpers.rb L:22
The text was updated successfully, but these errors were encountered: