Use updated meshcore-decoder library with TRACE patch and fixup frontend routing display on packet list

This commit is contained in:
Jack Kingsman
2026-03-09 12:45:51 -07:00
parent 463a0c9084
commit 5bfd9f4af2
5 changed files with 55 additions and 12 deletions
+4 -4
View File
@@ -157,9 +157,9 @@ function getRouteTypeColor(routeType: string): string {
return 'bg-info/20 text-info';
case 'Direct':
return 'bg-success/20 text-success';
case 'Transport Flood':
case 'TransportFlood':
return 'bg-purple-500/20 text-purple-400';
case 'Transport Direct':
case 'TransportDirect':
return 'bg-orange-500/20 text-orange-400';
default:
return 'bg-muted text-muted-foreground';
@@ -173,9 +173,9 @@ function getRouteTypeLabel(routeType: string): string {
return 'F';
case 'Direct':
return 'D';
case 'Transport Flood':
case 'TransportFlood':
return 'TF';
case 'Transport Direct':
case 'TransportDirect':
return 'TD';
default:
return '?';