browse.ui.js 401 B

12345678910
  1. window.renderCell = function(result, {col, row})
  2. {
  3. if(col.name === 'name' && row.data.integrated == 1)
  4. {
  5. result[0] = {className: 'overflow-hidden', html: result[0]};
  6. result[result.length] = {html:'<span class="label gray-pale rounded-xl clip">' + systemLang.integratedLabel + '</span>', className:'flex items-end', style:{flexDirection:"column"}};
  7. }
  8. return result;
  9. };