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 = {};