mirror of
https://0xacab.org/sutty/sutty
synced 2025-01-19 16:53:38 +00:00
guardar los valores falsos closes #141
This commit is contained in:
parent
21827da354
commit
e5aaed9524
2 changed files with 7 additions and 7 deletions
|
@ -15,14 +15,14 @@ class MetadataBoolean < MetadataTemplate
|
||||||
# En este caso, queremos priorizar el dato enviado por le usuarie
|
# En este caso, queremos priorizar el dato enviado por le usuarie
|
||||||
# antes que el generado internamente.
|
# antes que el generado internamente.
|
||||||
def value
|
def value
|
||||||
return false if false?
|
return false if self[:value] == '0'
|
||||||
|
return self[:value] unless self[:value].nil?
|
||||||
|
|
||||||
self[:value].present? || document.data.fetch(name.to_s, default_value)
|
document.data.fetch(name.to_s, default_value)
|
||||||
end
|
end
|
||||||
|
|
||||||
private
|
def save
|
||||||
|
self[:value] = !%w[0 false].include?(self[:value])
|
||||||
def false?
|
true
|
||||||
self[:value] == '0'
|
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
.form-check
|
.form-check
|
||||||
= hidden_field_tag "post[#{attribute}]", '0'
|
= hidden_field_tag "post[#{attribute}]", '0'
|
||||||
= check_box_tag "post[#{attribute}]", metadata.value, metadata.value,
|
= check_box_tag "post[#{attribute}]", '1', metadata.value,
|
||||||
class: "form-check-input #{invalid(post, attribute)}",
|
class: "form-check-input #{invalid(post, attribute)}",
|
||||||
aria: { describedby: id_for_help(attribute) },
|
aria: { describedby: id_for_help(attribute) },
|
||||||
autofocus: autofocus
|
autofocus: autofocus
|
||||||
|
|
Loading…
Reference in a new issue