[pve-devel] [PATCH pve-manager] Listen to activate / deactivate events to start the background store refresh

Emmanuel Kasper e.kasper at proxmox.com
Tue Dec 1 11:57:37 CET 2015


This fixes the problem that a user triggerred F5 was not displaying the
content of the Cluster Log Tab
---
 www/manager6/dc/Log.js | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/www/manager6/dc/Log.js b/www/manager6/dc/Log.js
index 385823b..aa14331 100644
--- a/www/manager6/dc/Log.js
+++ b/www/manager6/dc/Log.js
@@ -83,8 +83,8 @@ Ext.define('PVE.dc.Log', {
 		}
 	    ],
 	    listeners: {
-		show: logstore.startUpdate,
-		hide: logstore.stopUpdate,
+		activate: logstore.startUpdate,
+		deactivate: logstore.stopUpdate,
 		destroy: logstore.stopUpdate
 	    }
 	});
-- 
2.1.4





More information about the pve-devel mailing list