Resolve #3495320 "Show row weights"
2 unresolved threads
2 unresolved threads
Closes #3495320 - Fixed the toggle issue for Show row weights and the icon and font weight change is not theme based issue. I check with Claro same is happening over there.
Edited by Vasantha Deepika
Merge request reports
Activity
1817 show ? Drupal.t('Hide row weights') : Drupal.t('Show row weights'), 1816 toggleButtonContent: (show) => { 1817 const classes = [ 1818 'action-link', 1819 'action-link--extrasmall', 1820 'tabledrag-toggle-weight', 1821 ]; 1822 let text = ''; 1823 if (show) { 1824 classes.push('action-link--icon-hide'); 1825 text = Drupal.t('Hide row weights'); 1826 } else { 1827 classes.push('action-link--icon-show'); 1828 text = Drupal.t('Show row weights'); 1829 } 1830 return `<span class="${classes.join(' ')}">${text}</a>`; @Vasantha_Deepika should this be a
span
or ana
?It stars aso an
span
but ends as ana
tagchanged this line in version 5 of the diff
Hey @Vasantha_Deepika thanks for working on this, I left one comment above
Please register or sign in to reply