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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 712b2beb2eace6a4da360a0d154137a9ec173d06b0ad702b5c3787839e41a267
4
- data.tar.gz: c5df76616c80dcbcfca0d4b36cd0ec415ad96fe5df46a55ff001bedef958f3ba
3
+ metadata.gz: 33bf292b7c6408633a350ab9fcb2efe78c31fb2dd060a979862f734c19ac3511
4
+ data.tar.gz: e38fbcd56c953fdcdcdb1b4534a46967943af9b5ef4ecff5cd12ba193a064e54
5
5
  SHA512:
6
- metadata.gz: 963314faa829a0c0a7363587f375729c5e3097e1e5c8d80601c710ca0a071f43a955bd1dbfc25ac8896a279ca78d0ea607a5ed91c50ddeafa7635bdb233a86e8
7
- data.tar.gz: fcd56f33fc48ae936e63285545aed7bcb76b38e8601715060455d097797cfba6f5f83a2d4ac07057586012a93aeaea10284bc0ae1b0447d3a122b6d7df5e2f04
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-4] - 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
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
- 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.4"
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.4
4
+ version: 0.1.4.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - Poubelle