diff --git a/www/datastore/OptionView.js b/www/datastore/OptionView.js index fdba54df..0673f94a 100644 --- a/www/datastore/OptionView.js +++ b/www/datastore/OptionView.js @@ -66,12 +66,18 @@ Ext.define('PBS.Datastore.Options', { }, stopUpdates: function() { - let view = this.getView(); + let me = this; + let view = me.getView(); + view.rstore.stopUpdate(); + me.activeOperationsRstore.stopUpdate(); }, startUpdates: function() { - let view = this.getView(); + let me = this; + let view = me.getView(); + view.rstore.startUpdate(); + me.activeOperationsRstore.startUpdate(); }, },