mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2025-09-11 23:54:43 +08:00
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:
commit
3bbbeb7b35
1 changed files with 1 additions and 1 deletions
|
@ -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) {
|
||||
|
|
Loading…
Add table
Reference in a new issue