Fix select option edition

This commit is contained in:
Julien Nahum 2024-02-10 16:28:29 +01:00
parent a66c4965a5
commit e04221a72c
1 changed files with 1 additions and 1 deletions

View File

@ -468,7 +468,7 @@ export default {
return true
},
optionsText () {
if (this.field[this.field.type]) return []
if (this.field[this.field.type]) return ''
return this.field[this.field.type].options.map(option => {
return option.name
}).join('\n')