Skip to content
Snippets Groups Projects
Commit d549bdb3 authored by Jakob P's avatar Jakob P
Browse files

Issue #3336787: TypeError in commerce_product if enable admin_toolbar_extra

parent bcef584b
No related branches found
No related tags found
1 merge request!92Issue #3336787: TypeError in commerce_product if enable admin_toolbar_extra
Pipeline #242199 canceled
......@@ -67,11 +67,10 @@ class MenuLinkEntity extends MenuLinkDefault {
* {@inheritdoc}
*/
public function getDescription() {
// @todo Remove node_type special handling.
if ($this->entity instanceof EntityDescriptionInterface || $this->entity instanceof NodeTypeInterface) {
return $this->entity->getDescription();
if (method_exists($this->entity, 'getDescription')) {
$description = $this->entity->getDescription();
}
return parent::getDescription();
return $description ?? parent::getDescription();
}
/**
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment