From efca2bbbc69bc8e6e6777499e91308e02a0406f8 Mon Sep 17 00:00:00 2001 From: Dominik Csapak Date: Thu, 7 May 2020 14:00:08 +0200 Subject: [PATCH] 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 --- 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(); }, },