mirror of
https://github.com/n8n-io/n8n.git
synced 2025-03-05 20:50:17 -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
|
prevValue.length > 1
|
||||||
) {
|
) {
|
||||||
updatedValue = `${prevValue} ${data}`;
|
updatedValue = `${prevValue} ${data}`;
|
||||||
|
} else if (prevValue && ['string', 'json'].includes(this.parameter.type)) {
|
||||||
|
updatedValue = `=${prevValue} ${data}`;
|
||||||
} else {
|
} else {
|
||||||
updatedValue = `=${data}`;
|
updatedValue = `=${data}`;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue