From c301b049d8eed6c8cc70d6cba20087a076af9013 Mon Sep 17 00:00:00 2001 From: Chad Little Date: Mon, 15 Apr 2013 15:22:43 -0700 Subject: [PATCH] Add dust, remove header on Applications Summary: Minor, for consistency Test Plan: Tested Chrome and iOS Reviewers: epriestley, btrahan Reviewed By: epriestley CC: aran, Korvin Differential Revision: https://secure.phabricator.com/D5702 --- .../PhabricatorApplicationsListController.php | 12 ++---------- 1 file changed, 2 insertions(+), 10 deletions(-) diff --git a/src/applications/meta/controller/PhabricatorApplicationsListController.php b/src/applications/meta/controller/PhabricatorApplicationsListController.php index cefdc6697c..0a136cea6a 100644 --- a/src/applications/meta/controller/PhabricatorApplicationsListController.php +++ b/src/applications/meta/controller/PhabricatorApplicationsListController.php @@ -13,17 +13,8 @@ final class PhabricatorApplicationsListController $applications = PhabricatorApplication::getAllApplications(); $list = $this->buildInstalledApplicationsList($applications); - $title = pht('Installed Applications'); - - $header = id(new PhabricatorHeaderView()) - ->setHeader($title); - - $nav->appendChild( - array( - $header, - $list - )); + $nav->appendChild($list); $crumbs = $this ->buildApplicationCrumbs() @@ -39,6 +30,7 @@ final class PhabricatorApplicationsListController array( 'title' => $title, 'device' => true, + 'dust' => true, )); }