Fix exporting multiple choice form field value [SCI-11506]

This commit is contained in:
Andrej 2025-01-28 07:15:09 +01:00
parent 1c6ce25c51
commit 95d3424300

View file

@ -10,6 +10,6 @@ class FormMultipleChoiceFieldValue < FormFieldValue
end
def formatted
value.join('|')
value&.join('|')
end
end