mirror of
https://github.com/FoggedLens/deflock.git
synced 2026-07-14 15:57:20 +02:00
Fix camera popup crash when only surveillance:operator is set
This commit is contained in:
@@ -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);
|
||||
|
||||
Reference in New Issue
Block a user