pxs-forms 0.1.4.2 → 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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 10a0766d00fa1229b473bef2d3395b405937ab140f5be595bdb788e08f2b879a
4
- data.tar.gz: 8b666d79845c94be1bd3dbb33ae680d743be1398370f77e4540ba1de5c7f4a98
3
+ metadata.gz: 712b2beb2eace6a4da360a0d154137a9ec173d06b0ad702b5c3787839e41a267
4
+ data.tar.gz: c5df76616c80dcbcfca0d4b36cd0ec415ad96fe5df46a55ff001bedef958f3ba
5
5
  SHA512:
6
- metadata.gz: 657d12ba74ce45eab4ddd4123f0db14cde86e190398404efa37ce7acece16e5bb8cc1ba51b20bc803000a3b5518cbb7d4bd76668e3d907cbd47ef959acf329ac
7
- data.tar.gz: 4170e9c61dd00f01a28f37d5bad76610ab2b2ef70b78ca6f24cf000a503d6c5d6e82802dc81acc4a863eda04f85750669461579ec747aa9b2498b179e2ef5898
6
+ metadata.gz: 963314faa829a0c0a7363587f375729c5e3097e1e5c8d80601c710ca0a071f43a955bd1dbfc25ac8896a279ca78d0ea607a5ed91c50ddeafa7635bdb233a86e8
7
+ data.tar.gz: fcd56f33fc48ae936e63285545aed7bcb76b38e8601715060455d097797cfba6f5f83a2d4ac07057586012a93aeaea10284bc0ae1b0447d3a122b6d7df5e2f04
data/CHANGELOG.md CHANGED
@@ -2,6 +2,11 @@
2
2
 
3
3
  ## Unofficial Release
4
4
 
5
+ ## [0.1.4.3-4] - 2025-04-03
6
+
7
+ - Fix I18n missing from a I18n.t function call
8
+ - Fix incorrect field name for association subform
9
+
5
10
  ## [0.1.4] - 2025-04-01
6
11
 
7
12
  - Change error file
@@ -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
@@ -153,7 +153,7 @@ class ModelFormBuilder < ActionView::Helpers::FormBuilder
153
153
  # default options for the `Add` button
154
154
  add = {
155
155
  # add button default label
156
- label: t("actions.new", thing: "#{association_class(association).model_name.human}"),
156
+ label: I18n.t("actions.new", thing: "#{association_class(association).model_name.human}"),
157
157
  # add button default path
158
158
  path: new_associated_model_path(association, name: name)
159
159
  }
@@ -2,6 +2,6 @@
2
2
 
3
3
  module Pxs
4
4
  module Forms
5
- VERSION = "0.1.4.2"
5
+ VERSION = "0.1.4.4"
6
6
  end
7
7
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: pxs-forms
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.4.2
4
+ version: 0.1.4.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Poubelle
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2025-04-02 00:00:00.000000000 Z
11
+ date: 2025-04-03 00:00:00.000000000 Z
12
12
  dependencies: []
13
13
  description:
14
14
  email: