mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-10 06:34:05 -08:00
⚡ Build error fixed (let to const)
This commit is contained in:
parent
d1f9cef891
commit
4c63db8908
|
@ -1388,7 +1388,7 @@ export default mixins(
|
||||||
detachable: !this.isReadOnly,
|
detachable: !this.isReadOnly,
|
||||||
});
|
});
|
||||||
} else {
|
} else {
|
||||||
let connectionProperties = {connection, setStateDirty: false};
|
const connectionProperties = {connection, setStateDirty: false};
|
||||||
// When nodes get connected it gets saved automatically to the storage
|
// When nodes get connected it gets saved automatically to the storage
|
||||||
// so if we do not connect we have to save the connection manually
|
// so if we do not connect we have to save the connection manually
|
||||||
this.$store.commit('addConnection', connectionProperties);
|
this.$store.commit('addConnection', connectionProperties);
|
||||||
|
|
Loading…
Reference in a new issue