testcase.ui.js 288 B

12345678910
  1. window.renderCell = function(result, info)
  2. {
  3. const testcase = info.row.data;
  4. if(info.col.name == 'lastRunDate' && result)
  5. {
  6. if(testcase.lastRunDate == '0000-00-00 00:00:00') return [''];
  7. return [testcase.lastRunDate.substr(5, 11)];
  8. }
  9. return result;
  10. };