I noticed a typo in DevEntityBrowserController.php on line 72 that means block_content will never be matched/excluded.

switch ($entity_type->id()) {
        // remove unwanted Entities
        case '1block_content':
        case 'webform_submission':
          break;

This should be

switch ($entity_type->id()) {
        // remove unwanted Entities
        case 'block_content':
        case 'webform_submission':
          break;
Command icon Show commands

Start within a Git clone of the project using the version control instructions.

Or, if you do not have SSH keys set up on git.drupalcode.org:

  • main Comparechanges, plain diff MR !1

Comments

kewesley created an issue. See original summary.

kewesley’s picture

Status: Active » Needs review

Created a merge request for review.

mattyb made their first commit to this issue’s fork.

  • mattyb committed 77e828c8 on main authored by kewesley
    Issue #3467086 by kewesley: Typo in block_content entity type
    
kewesley’s picture

Status: Needs review » Fixed
mattyb’s picture

Version: 1.0.0 » 1.0.1

Status: Fixed » Closed (fixed)

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

mattyb’s picture