Commit 99a583a8 authored by Alexandre Derumier's avatar Alexandre Derumier Committed by Dietmar Maurer

fix rendering bollean

Signed-off-by: 's avatarAlexandre Derumier <aderumier@odiso.com>
parent 6e96ae42
......@@ -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) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment