From 4c63db8908c9c9f1e69b9bd50e6d1acd71afcf2c Mon Sep 17 00:00:00 2001 From: Rupenieks Date: Wed, 2 Sep 2020 16:06:18 +0200 Subject: [PATCH] :zap: Build error fixed (let to const) --- packages/editor-ui/src/views/NodeView.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/editor-ui/src/views/NodeView.vue b/packages/editor-ui/src/views/NodeView.vue index 4aa2b02856..d0b4133b1e 100644 --- a/packages/editor-ui/src/views/NodeView.vue +++ b/packages/editor-ui/src/views/NodeView.vue @@ -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);