pxs-forms 0.1.4.3 → 0.1.4.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +2 -1
- data/lib/pxs/forms/model_form_builder.rb +1 -1
- data/lib/pxs/forms/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 712b2beb2eace6a4da360a0d154137a9ec173d06b0ad702b5c3787839e41a267
|
4
|
+
data.tar.gz: c5df76616c80dcbcfca0d4b36cd0ec415ad96fe5df46a55ff001bedef958f3ba
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 963314faa829a0c0a7363587f375729c5e3097e1e5c8d80601c710ca0a071f43a955bd1dbfc25ac8896a279ca78d0ea607a5ed91c50ddeafa7635bdb233a86e8
|
7
|
+
data.tar.gz: fcd56f33fc48ae936e63285545aed7bcb76b38e8601715060455d097797cfba6f5f83a2d4ac07057586012a93aeaea10284bc0ae1b0447d3a122b6d7df5e2f04
|
data/CHANGELOG.md
CHANGED
@@ -145,7 +145,7 @@ class ModelFormBuilder < ActionView::Helpers::FormBuilder
|
|
145
145
|
# calls the new_[model]_path helper function with the model contained in @association, and any params given
|
146
146
|
def new_associated_model_path(association, name: nil, args: {})
|
147
147
|
# name param is the form's path
|
148
|
-
cached_helpers.send("new_#{association_class(association).model_name.singular}_path", {name: name || field_name(
|
148
|
+
cached_helpers.send("new_#{association_class(association).model_name.singular}_path", {name: name || field_name("#{association.to_s}_attributes")}.merge(args) )
|
149
149
|
end
|
150
150
|
|
151
151
|
# default options for an association select-or-create-with-subform field
|
data/lib/pxs/forms/version.rb
CHANGED