pxs-forms 0.1.4.3 → 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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 8707ecab435a38fe1b6a65818c4502fc7de73652383a1f4821e4bb5822ce8b57
4
- data.tar.gz: e20ed9bea229a6823278026315f682ec4e41524987ebea2e6d2b6c7241318fcc
3
+ metadata.gz: 33bf292b7c6408633a350ab9fcb2efe78c31fb2dd060a979862f734c19ac3511
4
+ data.tar.gz: e38fbcd56c953fdcdcdb1b4534a46967943af9b5ef4ecff5cd12ba193a064e54
5
5
  SHA512:
6
- metadata.gz: e6c6a00481aabb923ace1070689a968dc4ac30a1a0e43b1e1c9ffc467b1af100db885d1a84f5604640ff196992be6854474d02089c926a238683b47842972791
7
- data.tar.gz: 38d788622ff5b623cc553fc3a78f19d720046446a4c4abf991b76454dc80c7871c87f8507071003ee253f7c8429db49febaa953f747165dfce6fd795e6eaa7c5
6
+ metadata.gz: 419b5fcc8ad1c2ef1e3328d847553db33ee1368fcd70a2f35439c234ebf77b939661cea081b3edaeab5ef26bc4fb9baae5c2331620a212762634005be9c9c94a
7
+ data.tar.gz: af034fa3f7a8daf08b609edff870f54e200e49513fcb55489b220d616400356be3662a9887bd9ab7d4bd313e249681c6c4bf2ba44ba893bce1f2e04ce9a86618
data/CHANGELOG.md CHANGED
@@ -2,9 +2,11 @@
2
2
 
3
3
  ## Unofficial Release
4
4
 
5
- ## [0.1.4.3] - 2025-04-03
5
+ ## [0.1.4.3-5] - 2025-04-03
6
6
 
7
7
  - Fix I18n missing from a I18n.t function call
8
+ - Fix incorrect field name for association subform
9
+ - Fix explicit label not displayed in select fields
8
10
 
9
11
  ## [0.1.4] - 2025-04-01
10
12
 
@@ -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(object.class.model_name.singular, "#{association.to_s}_attributes")}.merge(args) )
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
@@ -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
- options[:label] ? nil : @template.label(object.class.to_s.underscore.downcase.to_sym, attribute, options[:label] || object.class.human_attribute_name(attribute)),
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
@@ -2,6 +2,6 @@
2
2
 
3
3
  module Pxs
4
4
  module Forms
5
- VERSION = "0.1.4.3"
5
+ VERSION = "0.1.4.5"
6
6
  end
7
7
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: pxs-forms
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.4.3
4
+ version: 0.1.4.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - Poubelle