Merge 8731f7880824ed18169554e950f09ee8aad9dbeb into b18b617b24646760911baababb822ae5279aae2b

This commit is contained in:
Rajnikant Lodhi 2025-03-23 13:11:11 +01:00 committed by GitHub
commit 6ba25b8ea4
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -43,7 +43,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;