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 <l.wagner@proxmox.com>
This commit is contained in:
Lukas Wagner 2023-11-23 09:57:55 +01:00 committed by Thomas Lamprecht
parent a5630fd2dd
commit 64821a108c

View File

@ -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';
}