Skip to content

Commit

Permalink
🐛 Fixed multiOption parameter input dropdown values after removing ex…
Browse files Browse the repository at this point in the history
…pression.
  • Loading branch information
Alex Grozav authored and Alex Grozav committed Apr 6, 2022
1 parent 1b2e9be commit e0a6561
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions packages/editor-ui/src/components/ParameterInput.vue
Original file line number Diff line number Diff line change
Expand Up @@ -391,6 +391,10 @@ export default mixins(
}
}
if (this.parameter.type === 'multiOptions' && typeof returnValue === 'string' && !this.isValueExpression) {
returnValue = (returnValue || '').split(',');
}
return returnValue;
},
expressionDisplayValue (): string {
Expand Down

0 comments on commit e0a6561

Please sign in to comment.