[pve-devel] [PATCH manager 2/3] ui: dc/ACMEClusterView: load the correct store on reload
Dominik Csapak
d.csapak at proxmox.com
Thu May 7 14:00:08 CEST 2020
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 at proxmox.com>
---
www/manager6/dc/ACMEClusterView.js | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/www/manager6/dc/ACMEClusterView.js b/www/manager6/dc/ACMEClusterView.js
index aaf2fc19..e73de7b7 100644
--- a/www/manager6/dc/ACMEClusterView.js
+++ b/www/manager6/dc/ACMEClusterView.js
@@ -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();
},
},
--
2.20.1
More information about the pve-devel
mailing list