Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
admin_toolbar
Manage
Activity
Members
Labels
Plan
Wiki
Custom issue tracker
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Model registry
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
project
admin_toolbar
Commits
d549bdb3
Commit
d549bdb3
authored
8 months ago
by
Jakob P
Browse files
Options
Downloads
Patches
Plain Diff
Issue
#3336787
: TypeError in commerce_product if enable admin_toolbar_extra
parent
bcef584b
No related branches found
No related tags found
1 merge request
!92
Issue #3336787: TypeError in commerce_product if enable admin_toolbar_extra
Pipeline
#242199
canceled
8 months ago
Stage: build
Stage: validate
Stage: test
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
admin_toolbar_tools/src/Plugin/Menu/MenuLinkEntity.php
+3
-4
3 additions, 4 deletions
admin_toolbar_tools/src/Plugin/Menu/MenuLinkEntity.php
with
3 additions
and
4 deletions
admin_toolbar_tools/src/Plugin/Menu/MenuLinkEntity.php
+
3
−
4
View file @
d549bdb3
...
...
@@ -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
();
}
/**
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment