mirror of
https://github.com/n8n-io/n8n.git
synced 2024-12-25 12:44:07 -08:00
feat(editor): Append expressions in fixed values when mapping
This commit is contained in:
parent
de2d7c9a59
commit
f0d395876c
|
@ -255,6 +255,8 @@ export default mixins(showMessage).extend({
|
|||
prevValue.length > 1
|
||||
) {
|
||||
updatedValue = `${prevValue} ${data}`;
|
||||
} else if (prevValue && ['string', 'json'].includes(this.parameter.type)) {
|
||||
updatedValue = `=${prevValue} ${data}`;
|
||||
} else {
|
||||
updatedValue = `=${data}`;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue