web app refactored service modal code and added proper support for sending current node services

This commit is contained in:
Blake J. Harnden 2018-05-15 16:28:41 -07:00
parent d4c05dab09
commit e11798bae5
3 changed files with 31 additions and 29 deletions

View file

@ -259,6 +259,7 @@ class CoreNetwork {
const position = node.position;
const coreNode = new CoreNode(node.id, node.type, node.name, position.x, position.y);
coreNode.model = node.model;
coreNode.services = node.services;
this.nodes.add(coreNode.getNetworkNode());
}