From 6361961a201eb5e84db4ba21c2648cd461fdd952 Mon Sep 17 00:00:00 2001 From: Pablo Revilla Date: Mon, 30 Jun 2025 14:00:59 -0700 Subject: [PATCH] changed the label for a node that does not report firmware from None to N/A --- meshview/templates/nodelist.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meshview/templates/nodelist.html b/meshview/templates/nodelist.html index 98a258c..b3b922f 100644 --- a/meshview/templates/nodelist.html +++ b/meshview/templates/nodelist.html @@ -125,7 +125,7 @@ tr:nth-child(odd) { {{ node.long_name }} {{ node.short_name }} {{ node.hw_model if node.hw_model else "N/A" }} - {{ node.firmware }} + {{ node.firmware if node.firmware else "N/A" }} {{ node.role if node.role else "N/A" }} {{ "{:.7f}".format(node.last_lat / 10**7) if node.last_lat else "N/A" }} {{ "{:.7f}".format(node.last_long / 10**7) if node.last_long else "N/A" }}