feat: add one-turn situation graph update UI
This commit is contained in:
@@ -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 || []),
|
||||
];
|
||||
|
||||
|
||||
Reference in New Issue
Block a user