diff --git a/library/Businessprocess/Web/Component/Dashboard.php b/library/Businessprocess/Web/Component/Dashboard.php index 58506df..3423b2f 100644 --- a/library/Businessprocess/Web/Component/Dashboard.php +++ b/library/Businessprocess/Web/Component/Dashboard.php @@ -87,9 +87,8 @@ class Dashboard extends BaseHtmlElement foreach ($processes as $name) { $meta = $storage->loadMetadata($name); $title = $meta->get('Title'); - if ($title) { - $title = sprintf('%s (%s)', $title, $name); - } else { + + if ($title === null) { $title = $name; }