mirror of
https://git.proxmox.com/git/pve-manager
synced 2025-08-14 14:32:37 +00:00
fix rendering bollean
Signed-off-by: Alexandre Derumier <aderumier@odiso.com>
This commit is contained in:
parent
820aa71f74
commit
0ad6be34d8
@ -36,7 +36,7 @@ Ext.define('PVE.grid.PendingObjectGrid', {
|
||||
|
||||
if (renderer) {
|
||||
current = renderer(value, metaData, record, rowIndex, colIndex, store);
|
||||
if(record.data['pending'] || rowdef.multiValues){
|
||||
if(record.data['pending'] || record.data['pending'] === 0 || rowdef.multiValues){
|
||||
pending = renderer(record.data['pending'], metaData, record, rowIndex, colIndex, store, 1);
|
||||
}
|
||||
if(pending == current) {
|
||||
|
Loading…
Reference in New Issue
Block a user