aboutsummaryrefslogtreecommitdiff
path: root/web/app/store/AlarmTypes.js
diff options
context:
space:
mode:
Diffstat (limited to 'web/app/store/AlarmTypes.js')
-rw-r--r--web/app/store/AlarmTypes.js6
1 files changed, 3 insertions, 3 deletions
diff --git a/web/app/store/AlarmTypes.js b/web/app/store/AlarmTypes.js
index 9520359f..1ee7ffe8 100644
--- a/web/app/store/AlarmTypes.js
+++ b/web/app/store/AlarmTypes.js
@@ -19,8 +19,8 @@ Ext.define('Traccar.store.AlarmTypes', {
extend: 'Ext.data.Store',
fields: ['key', 'name'],
- data: function () {
- var items = [];
+ data: (function () {
+ var key, items = [];
for (key in Strings) {
if (Strings.hasOwnProperty(key) && key.lastIndexOf('alarm', 0) === 0) {
items.push({
@@ -30,5 +30,5 @@ Ext.define('Traccar.store.AlarmTypes', {
}
}
return items;
- }()
+ })()
});