From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from firstgate.proxmox.com (firstgate.proxmox.com [212.224.123.68]) by lore.proxmox.com (Postfix) with ESMTPS id 7C26E1FF15E for ; Fri, 9 Aug 2024 07:49:57 +0200 (CEST) Received: from firstgate.proxmox.com (localhost [127.0.0.1]) by firstgate.proxmox.com (Proxmox) with ESMTP id BD7ED38112; Fri, 9 Aug 2024 07:50:07 +0200 (CEST) From: Hannes Laimer To: pmg-devel@lists.proxmox.com Date: Fri, 9 Aug 2024 07:49:28 +0200 Message-Id: <20240809054928.7427-1-h.laimer@proxmox.com> X-Mailer: git-send-email 2.39.2 MIME-Version: 1.0 X-SPAM-LEVEL: Spam detection results: 0 AWL 0.012 Adjusted score from AWL reputation of From: address BAYES_00 -1.9 Bayes spam probability is 0 to 1% DMARC_MISSING 0.1 Missing DMARC policy KAM_DMARC_STATUS 0.01 Test Rule for DKIM or SPF Failure with Strict Alignment RCVD_IN_VALIDITY_CERTIFIED_BLOCKED 0.001 ADMINISTRATOR NOTICE: The query to Validity was blocked. See https://knowledge.validity.com/hc/en-us/articles/20961730681243 for more information. RCVD_IN_VALIDITY_RPBL_BLOCKED 0.001 ADMINISTRATOR NOTICE: The query to Validity was blocked. See https://knowledge.validity.com/hc/en-us/articles/20961730681243 for more information. RCVD_IN_VALIDITY_SAFE_BLOCKED 0.001 ADMINISTRATOR NOTICE: The query to Validity was blocked. See https://knowledge.validity.com/hc/en-us/articles/20961730681243 for more information. SPF_HELO_NONE 0.001 SPF: HELO does not publish an SPF Record SPF_PASS -0.001 SPF: sender matches SPF record Subject: [pmg-devel] [PATCH pmg-gui] ui: allow 'info' field to be shown in object lists X-BeenThere: pmg-devel@lists.proxmox.com X-Mailman-Version: 2.1.29 Precedence: list List-Id: Proxmox Mail Gateway development discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Errors-To: pmg-devel-bounces@lists.proxmox.com Sender: "pmg-devel" Signed-off-by: Hannes Laimer --- came up in support, and I couldn't think of a good reason to not have the option to show the description in the list js/ObjectGroupList.js | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/js/ObjectGroupList.js b/js/ObjectGroupList.js index ab66e92..a2a1ea2 100644 --- a/js/ObjectGroupList.js +++ b/js/ObjectGroupList.js @@ -146,6 +146,14 @@ Ext.define('PMG.ObjectGroupList', { dataIndex: 'name', renderer: Ext.String.htmlEncode, }, + { + header: gettext('Description'), + sortable: true, + flex: 1, + dataIndex: 'info', + renderer: Ext.String.htmlEncode, + hidden: true, + }, ], listeners: { itemdblclick: function() { -- 2.39.2 _______________________________________________ pmg-devel mailing list pmg-devel@lists.proxmox.com https://lists.proxmox.com/cgi-bin/mailman/listinfo/pmg-devel