Resolve usage setting in template does not show in project bug

This commit is contained in:
Rajnikant Lodhi 2022-11-16 12:48:15 +05:30
parent fb639c8acd
commit ce252461bd

View File

@ -42,7 +42,7 @@ export class NodeToMapNodeConverter implements Converter<Node, MapNode> {
mapNode.status = node.status;
mapNode.symbol = node.symbol;
mapNode.symbolUrl = node.symbol_url;
mapNode.usage = node.usage;
mapNode.usage = node.properties.usage; // we are using usage key inside the properties object
mapNode.width = node.width;
mapNode.x = node.x;
mapNode.y = node.y;