mirror of
https://github.com/n8n-io/n8n.git
synced 2025-03-05 20:50:17 -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,
|
||||
});
|
||||
} else {
|
||||
let connectionProperties = {connection, setStateDirty: false};
|
||||
const connectionProperties = {connection, setStateDirty: false};
|
||||
// When nodes get connected it gets saved automatically to the storage
|
||||
// so if we do not connect we have to save the connection manually
|
||||
this.$store.commit('addConnection', connectionProperties);
|
||||
|
|
Loading…
Reference in a new issue