Skip to content

Commit

Permalink
fix: Added pin data color check after adding a connection.
Browse files Browse the repository at this point in the history
  • Loading branch information
alexgrozav committed Jul 20, 2022
1 parent b18309f commit 030c9fa
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions packages/editor-ui/src/views/NodeView.vue
Original file line number Diff line number Diff line change
Expand Up @@ -2090,6 +2090,10 @@ export default mixins(
// so if we do not connect we have to save the connection manually
this.$store.commit('addConnection', connectionProperties);
}
setTimeout(() => {
this.addPinDataConnections(this.$store.getters.pinData);
});
},
__removeConnection (connection: [IConnection, IConnection], removeVisualConnection = false) {
if (removeVisualConnection === true) {
Expand Down

0 comments on commit 030c9fa

Please sign in to comment.