Skip to content
Snippets Groups Projects

ISTWCMS-7001: remove code that was causing header in media flag by default, now handled by logic

1 file
+ 3
4
Compare changes
  • Side-by-side
  • Inline
@@ -51,10 +51,9 @@ function uw_cfg_common_toolbar_alter(array &$items) {
$url = Url::fromRoute($route);
if ($url->access()) {
$items['dashboards']['tray']['dashboards']['#items'][] = [
'#type' => 'link',
'#title' => $title,
'#url' => $url,
$items['dashboards']['tray']['dashboards']['#links'][] = [
'title' => $title,
'url' => $url,
];
}
}
Loading