Problem/Motivation
The module defines an admin menu link to a route that does not exist. When an admin visits the Admin menu edit screen (/admin/structure/menu/manage/admin), Drupal tries to render the menu links and throws:
Symfony\Component\Routing\Exception\RouteNotFoundException:
Route "image_blurry_placeholder.admin_settings" does not exist.
in Drupal\Core\Routing\RouteProvider->getRouteByName() (line 211 of core/lib/Drupal/Core/Routing/RouteProvider.php).
This prevents the Admin menu management page from loading.
Steps to reproduce
- Install and enable image_blurry_placeholder.
- Log in as a user with admin permissions.
- Visit /admin/structure/menu/manage/admin.
- Page throws an exception and fails to render.
Proposed resolution
Update image_blurry_placeholder.links.menu.yml to point to the module’s actual settings route (image_blurry_placeholder.settings).
Comments
Comment #2
dotoree commentedComment #6
dieterholvoet commentedThanks!