Skip to content

Commit

Permalink
fix: actions hidden fields value not being passed (#2493)
Browse files Browse the repository at this point in the history
  • Loading branch information
Paul-Bob authored Feb 21, 2024
1 parent 7cb02f5 commit a979a5e
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
<%= @form.hidden_field @field.id,
class: @field.get_html(:classes, view: view, element: :input),
data: @field.get_html(:data, view: view, element: :input),
style: @field.get_html(:style, view: view, element: :input)
style: @field.get_html(:style, view: view, element: :input),
value: @field.value
%>

0 comments on commit a979a5e

Please sign in to comment.