From d393eb4daff6686e3f59315a60a940e296bc2013 Mon Sep 17 00:00:00 2001 From: Graham McIntire Date: Fri, 4 Jul 2025 10:25:34 -0500 Subject: [PATCH] show raw device id --- lib/aprsme_web/live/info_live/show.html.heex | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/lib/aprsme_web/live/info_live/show.html.heex b/lib/aprsme_web/live/info_live/show.html.heex index 2434296..9246b9e 100644 --- a/lib/aprsme_web/live/info_live/show.html.heex +++ b/lib/aprsme_web/live/info_live/show.html.heex @@ -200,7 +200,11 @@
Device
- {@packet.manufacturer || ""} {@packet.equipment_type || ""} + <%= if @packet.manufacturer && @packet.manufacturer != "" do %> + {@packet.manufacturer} {@packet.equipment_type || ""} + <% else %> + {@packet.device_identifier || "Unknown"} + <% end %>