We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 73d006a commit c301b04Copy full SHA for c301b04
src/applications/meta/controller/PhabricatorApplicationsListController.php
@@ -13,17 +13,8 @@ public function processRequest() {
13
$applications = PhabricatorApplication::getAllApplications();
14
15
$list = $this->buildInstalledApplicationsList($applications);
16
-
17
$title = pht('Installed Applications');
18
19
- $header = id(new PhabricatorHeaderView())
20
- ->setHeader($title);
21
22
- $nav->appendChild(
23
- array(
24
- $header,
25
- $list
26
- ));
+ $nav->appendChild($list);
27
28
$crumbs = $this
29
->buildApplicationCrumbs()
@@ -39,6 +30,7 @@ public function processRequest() {
39
30
array(
40
31
'title' => $title,
41
32
'device' => true,
33
+ 'dust' => true,
42
34
));
43
35
}
44
36
0 commit comments