From 4ca21e3fa14c211d3ecbe1f4edb91143373e9595 Mon Sep 17 00:00:00 2001 From: Anton Tananaev Date: Sun, 4 Nov 2018 14:42:46 +1300 Subject: Fix lint issues --- web/app/store/AlarmTypes.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'web/app/store') 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; - }() + })() }); -- cgit v1.2.3