From ea0a523ef676310526055b1ae381387868afd738 Mon Sep 17 00:00:00 2001 From: Anton Tananaev Date: Sun, 28 Jun 2015 09:12:45 +1200 Subject: Fix state info duplicates (fix #1277) --- web/app/view/state/StateController.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/web/app/view/state/StateController.js b/web/app/view/state/StateController.js index f87a89664..466b0ee5b 100644 --- a/web/app/view/state/StateController.js +++ b/web/app/view/state/StateController.js @@ -72,6 +72,7 @@ Ext.define('Traccar.view.state.StateController', { updatePosition: function(position) { var store = Ext.getStore('Parameters'); + store.removeAll(); for (var key in position.data) { if (position.data.hasOwnProperty(key) && this.keys[key] !== undefined) { @@ -101,9 +102,10 @@ Ext.define('Traccar.view.state.StateController', { selectDevice: function(device) { this.deviceId = device.get('id'); var found = Ext.getStore('LiveData').query('deviceId', this.deviceId); - Ext.getStore('Parameters').removeAll(); if (found.getCount() > 0) { this.updatePosition(found.first()); + } else { + Ext.getStore('Parameters').removeAll(); } }, -- cgit v1.2.3