mirror of
https://0xacab.org/sutty/sutty
synced 2024-11-22 09:06:22 +00:00
fix: no enviar valores inversos vacíos
This commit is contained in:
parent
7ebc171cab
commit
52322c15c5
2 changed files with 3 additions and 2 deletions
|
@ -75,6 +75,7 @@
|
||||||
Enviamos valores vacíos o arrastrados desde el formulario anterior
|
Enviamos valores vacíos o arrastrados desde el formulario anterior
|
||||||
para los atributos ignorados
|
para los atributos ignorados
|
||||||
- except.each do |attr|
|
- except.each do |attr|
|
||||||
%input{ type: 'hidden', name: "#{base}[#{attr}]", value: pluck_param(attr, optional: true) }
|
- if (value = pluck_param(attr, optional: true)).present?
|
||||||
|
%input{ type: 'hidden', name: "#{base}[#{attr}]", value: value }
|
||||||
|
|
||||||
= yield(:post_form)
|
= yield(:post_form)
|
||||||
|
|
|
@ -59,7 +59,7 @@
|
||||||
= render 'posts/attributes', site: site, post: post, dir: dir, base: base, locale: locale, except: except
|
= render 'posts/attributes', site: site, post: post, dir: dir, base: base, locale: locale, except: except
|
||||||
-# @todo Volver obligatorios?
|
-# @todo Volver obligatorios?
|
||||||
- except.each do |attr|
|
- except.each do |attr|
|
||||||
- if (value = pluck_param(attr, optional: true))
|
- if (value = pluck_param(attr, optional: true)).present?
|
||||||
= hidden_field_tag "#{base}[#{attr}]", value
|
= hidden_field_tag "#{base}[#{attr}]", value
|
||||||
|
|
||||||
- content_for :"#{modal_id}_footer" do
|
- content_for :"#{modal_id}_footer" do
|
||||||
|
|
Loading…
Reference in a new issue