review.ui.js 329 B

12345678910
  1. window.renderRepobugList = function (result, {col, row, value})
  2. {
  3. if(col.name == 'entry')
  4. {
  5. result[0] = {html: '<span class="label primary mr-1">' + row.data.lines + '</span><a href="' + row.data.link + '" data-app="' + appTab + '">' + row.data.entry + '</a>'};
  6. return result;
  7. }
  8. return result;
  9. }