execution.ui.js 456 B

1234567891011
  1. window.renderCell = function(result, info)
  2. {
  3. const execution = info.row.data;
  4. if(info.col.name == 'name' && result)
  5. {
  6. let html = '';
  7. if((edition == 'max' || edition == 'ipd') && typeof(executionTypeList[execution.type]) != 'undefined') html = "<span class='project-type-label label label-info label-outline'>" + executionTypeList[execution.type] + "</span>";
  8. if(html) result.unshift({html});
  9. }
  10. return result;
  11. };