diff --git a/core/modules/toolbar/src/Element/ToolbarItem.php b/core/modules/toolbar/src/Element/ToolbarItem.php index 7f0216529ca5bda834eb806e232486d962ef75b2..2568b824b9b62087d0acc16041756b3d71db6613 100644 --- a/core/modules/toolbar/src/Element/ToolbarItem.php +++ b/core/modules/toolbar/src/Element/ToolbarItem.php @@ -25,7 +25,7 @@ public function getInfo() { ], 'tab' => [ '#type' => 'link', - '#title' => NULL, + '#title' => '', '#url' => Url::fromRoute('<front>'), ], ]; diff --git a/core/modules/toolbar/tests/modules/toolbar_test/toolbar_test.module b/core/modules/toolbar/tests/modules/toolbar_test/toolbar_test.module index cbc014054d3c5075601ec2ad65ae63d15fda7403..e399e267ff77277c5a47cba55711dc0414daf0ea 100644 --- a/core/modules/toolbar/tests/modules/toolbar_test/toolbar_test.module +++ b/core/modules/toolbar/tests/modules/toolbar_test/toolbar_test.module @@ -45,6 +45,9 @@ function toolbar_test_toolbar() { ], '#weight' => 50, ]; + $items['empty'] = [ + '#type' => 'toolbar_item', + ]; return $items; }