Skip to content
Snippets Groups Projects

Resolve #3495320 "Show row weights"

Merged Vasantha Deepika requested to merge issue/gin-3495320:3495320-show-row-weights into 8.x-3.x
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

Loading
Loading

Activity

Filter activity
  • Approvals
  • Assignees & reviewers
  • Comments (from bots)
  • Comments (from users)
  • Commits & branches
  • Edits
  • Labels
  • Lock status
  • Mentions
  • Merge request status
  • Tracking
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>`;
  • Sascha Eggenberger requested changes

    requested changes

  • added 1 commit

    Compare with previous version

  • added 1 commit

    Compare with previous version

  • Sascha Eggenberger enabled automatic add to merge train when checks pass

    enabled automatic add to merge train when checks pass

  • Sascha Eggenberger approved this merge request

    approved this merge request

  • Please register or sign in to reply
    Loading