diff --git a/lib/towerops_web/live/org/preseem_devices_live.html.heex b/lib/towerops_web/live/org/preseem_devices_live.html.heex index 70062dfe..6cae1099 100644 --- a/lib/towerops_web/live/org/preseem_devices_live.html.heex +++ b/lib/towerops_web/live/org/preseem_devices_live.html.heex @@ -114,7 +114,7 @@
<% else %> -| {t("Preseem ID")} | {t("IP Address")} | {t("Status")} | {t("Linked Device")} | @@ -162,16 +162,25 @@ id={"ap-row-#{ap.id}"} class="hover:bg-gray-50 dark:hover:bg-white/5" > -- {ap.name || "Unnamed"} - | -- {ap.preseem_id} + | + {ap.name || "Unnamed"} + + {ap.preseem_id} + + + {humanize_confidence(ap.match_confidence)} + | + {ap.preseem_id} + | +{ap.ip_address || "-"} | -+ | - | + | <%= if ap.device do %> <.link navigate={~p"/devices/#{ap.device.id}"} |
|---|