Steps to reproduce:
1. Install pathautho module.
2. Go to admin page /admin/config/search/path/settings.
3. Scroll down the page.

We can see that "Punctuation" fieldset is open and it's very-very long! I couldn't make a screen because it's too long for this!

Let's take a look at the code:

 $form['punctuation'] = array(
    '#type' => 'fieldset',
    '#title' => $this->t('Punctuation'),
    '#collapsible' => TRUE,
    '#collapsed' => TRUE,
    '#tree' => TRUE,
  );

Looks like it supposed to be hidden, but... collapsible fieldsets have been replaced with HTML5 details elements. See change records for details.

Support from Acquia helps fund testing for Drupal Acquia logo

Comments

Matroskeen created an issue. See original summary.

Matroskeen’s picture

And here is a simple patch.

santhosh.p’s picture

Assigned: Unassigned » santhosh.p
santhosh.p’s picture

Status: Needs review » Reviewed & tested by the community
FileSize
87.87 KB

patch #2 has been tested and it's working fine. After applying the patch able to expand and hide the "Punctuation" fieldset.

santhosh.p’s picture

Assigned: santhosh.p » Unassigned

  • Berdir committed 264052e on 8.x-1.x authored by Matroskeen
    Issue #2933345 by Matroskeen, santhosh.p, Berdir: Punctuation fieldset...
Berdir’s picture

Status: Reviewed & tested by the community » Fixed

This also removed #tree, but that is still needed. Fixed before commit.

Status: Fixed » Closed (fixed)

Automatically closed - issue fixed for 2 weeks with no activity.