From 3422b4205b52773e69a0aabf07a0ade0dc2b0aab Mon Sep 17 00:00:00 2001 From: Chad Little Date: Tue, 7 Mar 2017 11:42:45 -0800 Subject: [PATCH] Fix milestone widget header color on projects profile Summary: This should be blue, not grey. Test Plan: Add a milestone and subproject to a project Reviewers: epriestley Reviewed By: epriestley Subscribers: Korvin Differential Revision: https://secure.phabricator.com/D17477 --- .../project/controller/PhabricatorProjectProfileController.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/applications/project/controller/PhabricatorProjectProfileController.php b/src/applications/project/controller/PhabricatorProjectProfileController.php index 9e8d4edd49..dae57e55f9 100644 --- a/src/applications/project/controller/PhabricatorProjectProfileController.php +++ b/src/applications/project/controller/PhabricatorProjectProfileController.php @@ -244,7 +244,7 @@ final class PhabricatorProjectProfileController return id(new PHUIObjectBoxView()) ->setHeader($header) - ->setBackground(PHUIObjectBoxView::GREY) + ->setBackground(PHUIObjectBoxView::BLUE_PROPERTY) ->setObjectList($milestone_list); }