Merge pull request #8124 from aignatov-bio/ai-sci-11441-fix-multichoice-form-selection

Fix multi choice form selection [SCI-11441]
This commit is contained in:
aignatov-bio 2025-01-09 11:38:16 +01:00 committed by GitHub
commit 3bbbeb7b35
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -24,7 +24,7 @@ export default {
},
computed: {
value() {
return (this.field.field_value?.selection || '[]');
return (this.field.field_value?.selection || []);
},
options() {
if (!this.field.attributes.data.options) {