🐛 Fix bug that node was not selected after rename

This commit is contained in:
Jan Oberhauser 2019-07-24 15:04:24 +02:00
parent 2d8038669a
commit 117630fb68

View file

@ -1465,6 +1465,10 @@ export default mixins(
// Add the new updated nodes
await this.addNodes(Object.values(workflow.nodes), workflow.connectionsBySourceNode);
// Make sure that the node is selected again
this.deselectAllNodes();
this.nodeSelectedByName(newName);
},
async addNodes (nodes: INodeUi[], connections?: IConnections) {
if (!nodes || !nodes.length) {