singleplanblock.ui.js 355 B

12345678910
  1. window.onRenderPlanNameCell = function(result, info)
  2. {
  3. if(info.col.name === 'title' && info.row.data.expired == true)
  4. {
  5. const html = {html : '<span class="label size-sm circle danger-pale">' + delay + '</span>', className : 'flex items-end w-10', style : {flexDirection : "column"}};
  6. result.push(html);
  7. }
  8. return result;
  9. }