window.onRenderScrumNameCell = function(result, info) { if(info.col.name === 'name' && info.row.data.delay > 0) { const html = {html : '' + delayInfo.replace('%s', info.row.data.delay) + '', className : 'flex items-end', style : {flexDirection : "column"}}; result.push(html); } return result; }