From 4b23ab8806a0dc80993a115d8083d4111f7420bb Mon Sep 17 00:00:00 2001 From: Dominik Csapak Date: Tue, 13 Feb 2018 14:20:10 +0100 Subject: [PATCH] rename pve(Show|Hide)Help events we renamed them in the helpButton, we also have to rename them here this prevented the help button to show up in the vm/ct creation wizard Signed-off-by: Dominik Csapak Reviewed-by: Thomas Lamprecht --- panel/InputPanel.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/panel/InputPanel.js b/panel/InputPanel.js index 4add54d..e3a2520 100644 --- a/panel/InputPanel.js +++ b/panel/InputPanel.js @@ -5,12 +5,12 @@ Ext.define('Proxmox.panel.InputPanel', { activate: function() { // notify owning container that it should display a help button if (this.onlineHelp) { - Ext.GlobalEvents.fireEvent('pveShowHelp', this.onlineHelp); + Ext.GlobalEvents.fireEvent('proxmoxShowHelp', this.onlineHelp); } }, deactivate: function() { if (this.onlineHelp) { - Ext.GlobalEvents.fireEvent('pveHideHelp', this.onlineHelp); + Ext.GlobalEvents.fireEvent('proxmoxHideHelp', this.onlineHelp); } } },