+
+
+
+ {{ displayValue }}
+
+
+
+
diff --git a/web/src/components/NetworkView.vue b/web/src/components/NetworkView.vue
index 7f08ee6..374912a 100644
--- a/web/src/components/NetworkView.vue
+++ b/web/src/components/NetworkView.vue
@@ -16,7 +16,8 @@ const props = defineProps<{ panel: PanelSpec }>()
const store = useSimStore()
const effectiveConfig = computed(() => store.effectiveConfig(props.panel))
-const edges = computed(() => store.state.edgesByGraphHash[graphKey(effectiveConfig.value)] ?? [])
+const panelGraphKey = computed(() => graphKey(effectiveConfig.value))
+const edges = computed(() => store.state.edgesByGraphHash[panelGraphKey.value] ?? [])
const result = computed(() => store.state.resultsByPanelId[props.panel.id])
const layout = computed(() => layoutForGraph(effectiveConfig.value, edges.value))
@@ -64,6 +65,7 @@ function popDelay(nodeIndex: number): string {