ui: dc/ACMEClusterView: load the correct store on reload

if we use a diff/update store combo, we have to load the updatestore
not the diff store, else we get spurious empty grids

Signed-off-by: Dominik Csapak <d.csapak@proxmox.com>
This commit is contained in:
Dominik Csapak 2020-05-07 14:00:08 +02:00 committed by Thomas Lamprecht
parent fc40915c7c
commit efca2bbbc6

View File

@ -52,7 +52,7 @@ Ext.define('PVE.dc.ACMEAccountView', {
reload: function() {
let me = this;
let view = me.getView();
view.getStore().load();
view.getStore().rstore.load();
},
},
@ -142,7 +142,7 @@ Ext.define('PVE.dc.ACMEPluginView', {
reload: function() {
let me = this;
let view = me.getView();
view.getStore().load();
view.getStore().rstore.load();
},
},