pxs-forms 0.1.4.4 → 0.1.4.5
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: 33bf292b7c6408633a350ab9fcb2efe78c31fb2dd060a979862f734c19ac3511
|
4
|
+
data.tar.gz: e38fbcd56c953fdcdcdb1b4534a46967943af9b5ef4ecff5cd12ba193a064e54
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 419b5fcc8ad1c2ef1e3328d847553db33ee1368fcd70a2f35439c234ebf77b939661cea081b3edaeab5ef26bc4fb9baae5c2331620a212762634005be9c9c94a
|
7
|
+
data.tar.gz: af034fa3f7a8daf08b609edff870f54e200e49513fcb55489b220d616400356be3662a9887bd9ab7d4bd313e249681c6c4bf2ba44ba893bce1f2e04ce9a86618
|
data/CHANGELOG.md
CHANGED
@@ -2,10 +2,11 @@
|
|
2
2
|
|
3
3
|
## Unofficial Release
|
4
4
|
|
5
|
-
## [0.1.4.3-
|
5
|
+
## [0.1.4.3-5] - 2025-04-03
|
6
6
|
|
7
7
|
- Fix I18n missing from a I18n.t function call
|
8
8
|
- Fix incorrect field name for association subform
|
9
|
+
- Fix explicit label not displayed in select fields
|
9
10
|
|
10
11
|
## [0.1.4] - 2025-04-01
|
11
12
|
|
@@ -224,7 +224,7 @@ class ModelFormBuilder < ActionView::Helpers::FormBuilder
|
|
224
224
|
def collection_input(attribute, options, &block)
|
225
225
|
field_block(attribute, options) do
|
226
226
|
safe_join [
|
227
|
-
|
227
|
+
@template.label(object.class.to_s.underscore.downcase.to_sym, attribute, options[:label] || object.class.human_attribute_name(attribute)),
|
228
228
|
block.call,
|
229
229
|
]
|
230
230
|
end
|
data/lib/pxs/forms/version.rb
CHANGED