Go to a project page, make browser window narrow, click to expand action list.
Details
Details
- Reviewers
epriestley - Group Reviewers
Blessed Reviewers - Commits
- Restricted Diffusion Commit
rP8f48968c6eb9: Fix missing button to expand project action list on mobile.
Diff Detail
Diff Detail
- Lint
Lint Skipped - Unit
Tests Skipped
Event Timeline
Comment Actions
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();
Comment Actions
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.