mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-10 08:52:39 +01:00
Differential Action List on Mobile
Summary: Make the actions appear in crumbs on mobile Test Plan: Test action list on a mobile diff layout Reviewers: btrahan, epriestley Reviewed By: epriestley Subscribers: epriestley, Korvin Maniphest Tasks: T4730 Differential Revision: https://secure.phabricator.com/D8691
This commit is contained in:
parent
c9311a9eae
commit
7446402f92
2 changed files with 12 additions and 0 deletions
|
@ -420,6 +420,7 @@ final class DifferentialRevisionViewController extends DifferentialController {
|
|||
|
||||
$crumbs = $this->buildApplicationCrumbs();
|
||||
$crumbs->addTextCrumb($object_id, '/'.$object_id);
|
||||
$crumbs->setActionList($revision_detail->getActionList());
|
||||
|
||||
$prefs = $user->loadPreferences();
|
||||
|
||||
|
|
|
@ -7,6 +7,7 @@ final class DifferentialRevisionDetailView extends AphrontView {
|
|||
private $customFields;
|
||||
private $diff;
|
||||
private $uri;
|
||||
private $actionList;
|
||||
|
||||
public function setURI($uri) {
|
||||
$this->uri = $uri;
|
||||
|
@ -37,6 +38,15 @@ final class DifferentialRevisionDetailView extends AphrontView {
|
|||
return $this->actions;
|
||||
}
|
||||
|
||||
public function setActionList(PhabricatorActionListView $list) {
|
||||
$this->actionList = $list;
|
||||
return $this;
|
||||
}
|
||||
|
||||
public function getActionList() {
|
||||
return $this->actionList;
|
||||
}
|
||||
|
||||
public function setCustomFields(PhabricatorCustomFieldList $list) {
|
||||
$this->customFields = $list;
|
||||
return $this;
|
||||
|
@ -95,6 +105,7 @@ final class DifferentialRevisionDetailView extends AphrontView {
|
|||
|
||||
$properties->setHasKeyboardShortcuts(true);
|
||||
$properties->setActionList($actions);
|
||||
$this->setActionList($actions);
|
||||
|
||||
$field_list = $this->customFields;
|
||||
if ($field_list) {
|
||||
|
|
Loading…
Reference in a new issue