From 7acaf25bcc14d9cb74ab33f10c2e38868db80ddb Mon Sep 17 00:00:00 2001 From: Chad Little Date: Sun, 1 Feb 2015 20:43:02 -0800 Subject: [PATCH] Cleanup Dashboard Crumbs Summary: Browse Dashboards, add proper UI crumbs. Test Plan: view pages Reviewers: epriestley Reviewed By: epriestley Subscribers: Korvin, epriestley Differential Revision: https://secure.phabricator.com/D11609 --- .../controller/PhabricatorDashboardHistoryController.php | 1 + .../dashboard/controller/PhabricatorDashboardViewController.php | 1 + 2 files changed, 2 insertions(+) diff --git a/src/applications/dashboard/controller/PhabricatorDashboardHistoryController.php b/src/applications/dashboard/controller/PhabricatorDashboardHistoryController.php index 641f642bd4..bdd2e03b87 100644 --- a/src/applications/dashboard/controller/PhabricatorDashboardHistoryController.php +++ b/src/applications/dashboard/controller/PhabricatorDashboardHistoryController.php @@ -27,6 +27,7 @@ final class PhabricatorDashboardHistoryController $title = $dashboard->getName(); $crumbs = $this->buildApplicationCrumbs(); + $crumbs->setBorder(true); $crumbs->addTextCrumb( pht('Dashboard %d', $dashboard->getID()), $dashboard_view_uri); diff --git a/src/applications/dashboard/controller/PhabricatorDashboardViewController.php b/src/applications/dashboard/controller/PhabricatorDashboardViewController.php index bda1bf0516..5dc9949c78 100644 --- a/src/applications/dashboard/controller/PhabricatorDashboardViewController.php +++ b/src/applications/dashboard/controller/PhabricatorDashboardViewController.php @@ -28,6 +28,7 @@ final class PhabricatorDashboardViewController $title = $dashboard->getName(); $crumbs = $this->buildApplicationCrumbs(); + $crumbs->setBorder(true); $crumbs->addTextCrumb(pht('Dashboard %d', $dashboard->getID())); if ($dashboard->getPanelPHIDs()) {