feat: add one-turn situation graph update UI

This commit is contained in:
2026-08-02 09:43:42 +01:00
parent a948910ba8
commit a9bce79658
11 changed files with 901 additions and 42 deletions
+15 -2
View File
@@ -55,11 +55,21 @@ export default function DiagnosticsView({ result }) {
},
{
label: "Node count",
value: diagnostics.nodeCount != null ? diagnostics.nodeCount : "?",
value:
diagnostics.nodeCount != null
? diagnostics.nodeCount
: diagnostics.graphNodeCount != null
? diagnostics.graphNodeCount
: "?",
},
{
label: "Edge count",
value: diagnostics.edgeCount != null ? diagnostics.edgeCount : "?",
value:
diagnostics.edgeCount != null
? diagnostics.edgeCount
: diagnostics.graphEdgeCount != null
? diagnostics.graphEdgeCount
: "?",
},
{
label: "Graph references",
@@ -75,6 +85,9 @@ export default function DiagnosticsView({ result }) {
const errors = [
...(result.errors || []),
...(result.validationErrors || []),
...(result.graphValidationErrors || []),
...(result.proposalErrors || []),
...(result.providerErrors || []),
...(result.analysisErrors || []),
];