From fda92d662214fee861bc5e9181e0cdbc74c9d2ea Mon Sep 17 00:00:00 2001 From: Sarmad Date: Wed, 17 Jun 2026 15:37:17 -0400 Subject: [PATCH] Fix camera popup crash when only surveillance:operator is set --- webapp/src/components/DFMapPopup.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/webapp/src/components/DFMapPopup.vue b/webapp/src/components/DFMapPopup.vue index 853e0d1..48f5c7f 100644 --- a/webapp/src/components/DFMapPopup.vue +++ b/webapp/src/components/DFMapPopup.vue @@ -101,7 +101,7 @@ const abbreviatedOperator = computed(() => { "Sheriffs Office": "SO", }; - const operator = props.alpr.tags.operator; + const operator = props.alpr.tags[operatorTagKey]; for (const [full, abbr] of Object.entries(replacements)) { if (operator.includes(full)) { return operator.replace(full, abbr);