Page MenuHomePhabricator

Fix missing button to expand project action list on mobile.
ClosedPublic

Authored by brechtvl on Nov 27 2013, 7:58 PM.
Tags
None
Referenced Files
F19553480: D7666.diff
Thu, Jan 29, 11:31 AM
F19503027: D7666.id17311.diff
Jan 8 2026, 8:57 PM
F19503014: D7666.id17310.diff
Jan 8 2026, 8:57 PM
F19097197: D7666.id.diff
Dec 4 2025, 12:45 PM
F19091645: D7666.diff
Dec 3 2025, 3:06 PM
F18876957: D7666.id.diff
Nov 6 2025, 5:05 AM
F18857049: D7666.id.diff
Nov 1 2025, 12:56 PM
F18853289: D7666.diff
Oct 31 2025, 3:35 PM

Details

Test Plan

Go to a project page, make browser window narrow, click to expand action list.

Diff Detail

Lint
Lint Skipped
Unit
Tests Skipped

Event Timeline

This is the slightly more standard/general fix, does that work?

diff --git a/src/applications/project/controller/PhabricatorProjectController.php b/src/applications/project/controller/PhabricatorProjectController.php
index a50d0af..8a72300 100644
--- a/src/applications/project/controller/PhabricatorProjectController.php
+++ b/src/applications/project/controller/PhabricatorProjectController.php
@@ -21,6 +21,10 @@ abstract class PhabricatorProjectController extends PhabricatorController {
     return $nav;
   }
 
+  public function buildApplicationMenu() {
+    return $this->buildSideNavView(true)->getMenu();
+  }
+
   public function buildApplicationCrumbs() {
     $crumbs = parent::buildApplicationCrumbs();

Oh -- I think the two do different things. Let me check...

Yeah, one fixes actions ("Edit Project...") one fixes the availability of the navigation menu.

I think we're going to pull the action element back out of the header, but this is fine for the moment.