5
0
Fork 0
mirror of https://0xacab.org/sutty/sutty synced 2024-11-22 09:46:22 +00:00

fix: new_predefined_array con valores legibles por humanes

This commit is contained in:
f 2024-07-02 13:01:13 -03:00
parent 91e9eab975
commit bd3df6c186
No known key found for this signature in database

View file

@ -7,4 +7,13 @@ class MetadataPredefinedArray < MetadataArray
[v[I18n.locale.to_s], k]
end&.to_h
end
# Devolver los valores legibles por humanes
#
# @todo Debería devolver los valores en el idioma del post, no de le
# usuarie
# @return [String]
def to_s
values.invert.select { |x, k| value.include?(x) }.values.join(', ')
end
end