Refactor Dante fields to use proper types and group flows with lastSeen

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
Ian Gulliver
2026-01-28 23:15:24 -08:00
parent 99083ecde5
commit b966ad0feb
4 changed files with 129 additions and 99 deletions

View File

@@ -1895,8 +1895,8 @@
nodes.forEach(node => {
const nodeId = node.id;
const danteTx = node.dante_tx || [];
const danteRx = node.dante_rx || [];
const danteTx = node.dante_flows?.tx || [];
const danteRx = node.dante_flows?.rx || [];
if (danteTx.length === 0 && danteRx.length === 0) return;