scrumlistblock.ui.js 393 B

12345678910
  1. window.onRenderScrumNameCell = function(result, info)
  2. {
  3. if(info.col.name === 'name' && info.row.data.delay > 0)
  4. {
  5. const html = {html : '<span class="label size-sm danger-pale flex-none nowrap">' + delayInfo.replace('%s', info.row.data.delay) + '</span>', className : 'flex items-end', style : {flexDirection : "column"}};
  6. result.push(html);
  7. }
  8. return result;
  9. }