mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-22 23:02:42 +01:00
Remove double padding on project task list
Summary: SInce we added the background color, no need to add extra padding for ObjectItemList. Test Plan: reload a project page, no white padding in object box. Reviewers: epriestley Reviewed By: epriestley CC: Korvin, epriestley, aran Differential Revision: https://secure.phabricator.com/D7866
This commit is contained in:
parent
c20fd58303
commit
234123b925
1 changed files with 1 additions and 5 deletions
|
@ -180,13 +180,9 @@ final class PhabricatorProjectProfileController
|
|||
$task_list->setTasks($tasks);
|
||||
$task_list->setHandles($handles);
|
||||
|
||||
$list = id(new PHUIBoxView())
|
||||
->addPadding(PHUI::PADDING_LARGE)
|
||||
->appendChild($task_list);
|
||||
|
||||
$content = id(new PHUIObjectBoxView())
|
||||
->setHeaderText(pht('Open Tasks'))
|
||||
->appendChild($list);
|
||||
->appendChild($task_list);
|
||||
|
||||
return $content;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue