Skip to content

Commit

Permalink
fix(network-navigation): package info not updating (#475)
Browse files Browse the repository at this point in the history
  • Loading branch information
PierreDemailly authored Feb 27, 2025
1 parent f37a7f4 commit 083e9a5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion public/core/network-navigation.js
Original file line number Diff line number Diff line change
Expand Up @@ -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);
}
Expand Down

0 comments on commit 083e9a5

Please sign in to comment.