From 52039438e811b39e450a451f1696ab90db638afc Mon Sep 17 00:00:00 2001 From: Pierre Demailly Date: Thu, 27 Feb 2025 00:27:33 +0100 Subject: [PATCH] fix(network-navigation): package info not updating --- public/core/network-navigation.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/public/core/network-navigation.js b/public/core/network-navigation.js index 10f95cf2..1ec2fe6a 100644 --- a/public/core/network-navigation.js +++ b/public/core/network-navigation.js @@ -175,11 +175,11 @@ export class NetworkNavigation { #navigateTreeLevel(node) { const activeNode = node[0]; + this.#nsn.focusNodeById(activeNode); this.#currentNodeParams = { nodes: [activeNode], edges: this.#nsn.network.getConnectedEdges(activeNode) }; - this.#nsn.focusNodeById(activeNode); this.#dependenciesMapByLevel.set(this.#currentLevel, this.#currentNodeParams); }