1
0
Fork 0
mirror of https://we.phorge.it/source/phorge.git synced 2024-11-10 08:52:39 +01:00

Drop "Quick Create" header from quick create menu

Summary:
Ref T9908. We can get a double-header with this ("Quick Create", "Create Task") which looks weird.

The behavior of this menu is probably obvious enough on its own from context and the "+" icon.

Test Plan: Opened menu, no more "Quick Create" item.

Reviewers: chad

Reviewed By: chad

Maniphest Tasks: T9908

Differential Revision: https://secure.phabricator.com/D14696
This commit is contained in:
epriestley 2015-12-07 11:26:55 -08:00
parent a1ccee8c24
commit 2c9257b394

View file

@ -100,7 +100,6 @@ final class PhabricatorHomeApplication extends PhabricatorApplication {
$view = null;
if ($items) {
$view = new PHUIListView();
$view->newLabel(pht('Quick Create'));
foreach ($items as $item) {
$view->addMenuItem($item);
}