Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
ermolaev committed Jul 5, 2024
1 parent 099a0c3 commit 91fb488
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/active_dry_form/base_form.rb
Original file line number Diff line number Diff line change
Expand Up @@ -148,8 +148,8 @@ def self.define_methods
attributes[key] = _deep_transform_values_in_params!(v)
end

define_method :'[]=' do |key, v|
attributes[key] = _deep_transform_values_in_params!(v)
define_method :'[]=' do |k, v|
attributes[k] = _deep_transform_values_in_params!(v)
end

sub_klass =
Expand Down

0 comments on commit 91fb488

Please sign in to comment.