- Issue created by @adwivedi008
I was able to see multiple "add" buttons in the breadcrumbs. But I was able to save the translated node without any errors.
I'm using Drupal Core 10.4.5
- 🇳🇿New Zealand quietone
Changes are made on on 11.x (our main development branch) first, and are then back ported as needed according to the Core change policies → .
- 🇮🇳India annmarysruthy
Was able to replicate the issue with steps mentioned in description.
The issue occurs because the source and target parameters are explicitly set to NULL in the ContentTranslationRouteSubscriber.php file while defining the translation add route. This results in incorrect route processing, leading to duplicate "Add" links in the breadcrumb and an unexpected error when clicked.
if ($entity_type->hasLinkTemplate('drupal:content-translation-add')) { $route = new Route( $entity_type->getLinkTemplate('drupal:content-translation-add'), [ '_controller' => '\Drupal\content_translation\Controller\ContentTranslationController::add', 'source' => NULL, 'target' => NULL, '_title' => 'Add', 'entity_type_id' => $entity_type_id, ],
Removing the source and target parameters from the route definition allows Drupal to handle them dynamically based on context, preventing duplicate breadcrumb links:
if ($entity_type->hasLinkTemplate('drupal:content-translation-add')) { $route = new Route( $entity_type->getLinkTemplate('drupal:content-translation-add'), [ '_controller' => '\Drupal\content_translation\Controller\ContentTranslationController::add', '_title' => 'Add', 'entity_type_id' => $entity_type_id, ],
This change removes the duplicate "Add" breadcrumb links.The breadcrumb structure will now be:
Home > Page Title > Translations.
this ensures breadcrumb consistency with how Drupal structures breadcrumbs in other areas, such as when adding a content type (Home > Administration > Structure > Content types).Would love to hear thoughts from others on this approach