From 64821a108ca3a683202c7a8273039a3b44cadadc Mon Sep 17 00:00:00 2001 From: Lukas Wagner Date: Thu, 23 Nov 2023 09:57:55 +0100 Subject: [PATCH] notification ui: change icon for for match-field tree nodes The old icon was slightly ambiguous since we also use it for LXC containers. Signed-off-by: Lukas Wagner --- src/window/NotificationMatcherEdit.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/window/NotificationMatcherEdit.js b/src/window/NotificationMatcherEdit.js index 03b453d..5e81e40 100644 --- a/src/window/NotificationMatcherEdit.js +++ b/src/window/NotificationMatcherEdit.js @@ -600,7 +600,7 @@ Ext.define('Proxmox.panel.NotificationMatchRuleTree', { let field = data.field; let value = data.value; text = Ext.String.format(gettext("Match field: {0}={1}"), field, value); - iconCls = 'fa fa-cube'; + iconCls = 'fa fa-square-o'; if (!field || !value) { iconCls += ' critical'; }