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;
Issue fork dev_entity_browser-3467086
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:
Comments
Comment #3
kewesley commentedCreated a merge request for review.
Comment #6
kewesley commentedComment #7
mattybComment #9
mattyb