Typo in block_content entity type

Created on 9 August 2024, 5 months ago
Updated 23 August 2024, 4 months ago

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;
🐛 Bug report
Status

Fixed

Version

1.0

Component

Code

Created by

🇬🇧United Kingdom kewesley

Live updates comments and jobs are added and updated live.
Sign in to follow issues

Merge Requests

Comments & Activities

Production build 0.71.5 2024