Skip to content
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

Fix issue with button_to's to_form_params #31320

Merged
merged 1 commit into from
Jul 18, 2018

Commits on Jul 16, 2018

  1. Fix issue with button_to's to_form_params

    `button_to` was throwing exception when invoked with `params` hash that
    contains symbol and string keys. The reason for the exception was that
    `to_form_params` was comparing the given symbol and string keys.
    
    The issue is fixed by turning all keys to strings inside
    `to_form_params` before comparing them.
    gtyanchev committed Jul 16, 2018
    Configuration menu
    Copy the full SHA
    113d8a2 View commit details
    Browse the repository at this point in the history