From 7576d8a91d5a14c413ea87c969a2ed88d3c43f4b Mon Sep 17 00:00:00 2001 From: Will Freeman Date: Wed, 28 Jan 2026 22:22:37 -0700 Subject: [PATCH] show pending devices, even w/o tags --- webapp/src/views/Identify.vue | 16 +++++++++++++++- 1 file changed, 15 insertions(+), 1 deletion(-) diff --git a/webapp/src/views/Identify.vue b/webapp/src/views/Identify.vue index ebf1c7a..57e8986 100644 --- a/webapp/src/views/Identify.vue +++ b/webapp/src/views/Identify.vue @@ -17,7 +17,7 @@ class="mb-6" > License Plate Readers - Other Surveillance + Other Devices @@ -121,14 +121,19 @@

OSM Tags

+
+ Coming soon +
@@ -204,13 +209,18 @@

OSM Tags

+
+ Coming soon +
@@ -278,6 +288,10 @@ function getVendorTagKeys(vendor: LprVendor): string[] { return Object.keys(vendor.osmTags ?? {}); } +function hasOsmTags(osmTags: Record | undefined): boolean { + return osmTags !== undefined && Object.keys(osmTags).length > 0; +} + // Group other surveillance devices by category, preserving CMS order const devicesByCategory = computed(() => { const grouped: Record = {};