PendingObjectGrid: mark pending changes as orange

as red is commonly associated with an error, which pending changes
ain't. But, they should be clearly visible - so use darkorange
This commit is contained in:
Thomas Lamprecht 2020-05-22 09:37:51 +02:00
parent 9a3c1cb408
commit 6dc34e5525

View File

@ -85,7 +85,7 @@ Ext.define('Proxmox.grid.PendingObjectGrid', {
}
if (pending) {
return current + '<div style="color:red">' + pending + '</div>';
return current + '<div style="color:darkorange">' + pending + '</div>';
} else {
return current;
}