From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from firstgate.proxmox.com (firstgate.proxmox.com [212.224.123.68]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by lists.proxmox.com (Postfix) with ESMTPS id 22B6367B95 for ; Tue, 10 Nov 2020 13:39:22 +0100 (CET) Received: from firstgate.proxmox.com (localhost [127.0.0.1]) by firstgate.proxmox.com (Proxmox) with ESMTP id 1A33620B30 for ; Tue, 10 Nov 2020 13:38:52 +0100 (CET) Received: from proxmox-new.maurer-it.com (proxmox-new.maurer-it.com [212.186.127.180]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by firstgate.proxmox.com (Proxmox) with ESMTPS id 6ECFC20B1F for ; Tue, 10 Nov 2020 13:38:51 +0100 (CET) Received: from proxmox-new.maurer-it.com (localhost.localdomain [127.0.0.1]) by proxmox-new.maurer-it.com (Proxmox) with ESMTP id 36D5644A33 for ; Tue, 10 Nov 2020 13:38:51 +0100 (CET) From: Aaron Lauterer To: pbs-devel@lists.proxmox.com Date: Tue, 10 Nov 2020 13:38:50 +0100 Message-Id: <20201110123850.21491-3-a.lauterer@proxmox.com> X-Mailer: git-send-email 2.20.1 In-Reply-To: <20201110123850.21491-1-a.lauterer@proxmox.com> References: <20201110123850.21491-1-a.lauterer@proxmox.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-SPAM-LEVEL: Spam detection results: 0 AWL -0.008 Adjusted score from AWL reputation of From: address KAM_DMARC_STATUS 0.01 Test Rule for DKIM or SPF Failure with Strict Alignment RCVD_IN_DNSWL_MED -2.3 Sender listed at https://www.dnswl.org/, medium trust SPF_HELO_NONE 0.001 SPF: HELO does not publish an SPF Record SPF_PASS -0.001 SPF: sender matches SPF record Subject: [pbs-devel] [PATCH proxmox-backup 3/3] ui: add mising panel help buttons X-BeenThere: pbs-devel@lists.proxmox.com X-Mailman-Version: 2.1.29 Precedence: list List-Id: Proxmox Backup Server development discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 10 Nov 2020 12:39:22 -0000 add missing help buttons (question mark, top right) so that we are consistent and each panel has it. I chose the IMHO most fitting sections. Signed-off-by: Aaron Lauterer --- www/ServerAdministration.js | 2 ++ www/Subscription.js | 1 + www/SystemConfiguration.js | 1 + 3 files changed, 4 insertions(+) diff --git a/www/ServerAdministration.js b/www/ServerAdministration.js index b79d62cd..0d803ac4 100644 --- a/www/ServerAdministration.js +++ b/www/ServerAdministration.js @@ -7,6 +7,8 @@ Ext.define('PBS.ServerAdministration', { border: true, defaults: { border: false }, + tools: [PBS.Utils.get_help_tool("sysadmin-host-administration")], + controller: { xclass: 'Ext.app.ViewController', diff --git a/www/Subscription.js b/www/Subscription.js index 54b8ae27..b641f2f3 100644 --- a/www/Subscription.js +++ b/www/Subscription.js @@ -24,6 +24,7 @@ Ext.define('PBS.Subscription', { border: true, onlineHelp: 'get_help', + tools: [PBS.Utils.get_help_tool("get_help")], viewConfig: { enableTextSelection: true, diff --git a/www/SystemConfiguration.js b/www/SystemConfiguration.js index 82d875ee..d82396af 100644 --- a/www/SystemConfiguration.js +++ b/www/SystemConfiguration.js @@ -6,6 +6,7 @@ Ext.define('PBS.SystemConfiguration', { border: true, scrollable: true, defaults: { border: false }, + tools: [PBS.Utils.get_help_tool("sysadmin-network-configuration")], items: [ { title: gettext('Network/Time'), -- 2.20.1