add channel to firehouse

This commit is contained in:
pablorevilla-meshtastic
2026-04-03 11:40:56 -07:00
parent bd9d8ae265
commit 96efe27abc
4 changed files with 5 additions and 12 deletions
-11
View File
@@ -662,17 +662,6 @@ Check the log file to see it the script run at the specific time.
---
## Testing
MeshView includes a test suite using pytest. For detailed testing documentation, see [README-testing.md](README-testing.md).
Quick start:
```bash
./env/bin/pytest tests/test_api_simple.py -v
```
---
## Technical Documentation
For more detailed technical documentation including database migrations, architecture details, and advanced topics, see the [docs/](docs/) directory.
+1
View File
@@ -180,6 +180,7 @@
"packet_id": "Packet ID",
"from": "From",
"to": "To",
"channel": "Channel",
"port": "Port",
"links": "Links",
"unknown_app": "UNKNOWN APP",
+1
View File
@@ -179,6 +179,7 @@
"packet_id": "ID de paquete",
"from": "De",
"to": "A",
"channel": "Canal",
"port": "Puerto",
"direct_to_mqtt": "Directo a MQTT",
"all_broadcast": "Todos"
+3 -1
View File
@@ -107,6 +107,7 @@
<th data-translate-lang="packet_id">Packet ID</th>
<th data-translate-lang="from">From</th>
<th data-translate-lang="to">To</th>
<th data-translate-lang="channel">Channel</th>
<th data-translate-lang="port">Port</th>
</tr>
</thead>
@@ -343,12 +344,13 @@ async function fetchUpdates() {
<td>${from}</td>
<td>${to}</td>
<td>${pkt.channel || "—"}</td>
<td>${portLabel(pkt.portnum, pkt.payload, inlineLinks)}</td>
</tr>
<tr class="payload-row">
<td colspan="5" class="payload-cell">${safePayload}</td>
<td colspan="6" class="payload-cell">${safePayload}</td>
</tr>
`;