diff options
Diffstat (limited to 'web/app/view/state/StateController.js')
-rw-r--r-- | web/app/view/state/StateController.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/web/app/view/state/StateController.js b/web/app/view/state/StateController.js index b6a6cc542..f87a89664 100644 --- a/web/app/view/state/StateController.js +++ b/web/app/view/state/StateController.js @@ -72,7 +72,6 @@ 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) { @@ -102,6 +101,7 @@ 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()); } |