Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[phabricator] change icon for abandon #6

Draft
wants to merge 1 commit into
base: master
Choose a base branch
from
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -150,7 +150,7 @@ public function getIcon() {
case PhabricatorAuditActionConstants::ACCEPT:
return 'fa-check';
case PhabricatorAuditActionConstants::RESIGN:
return 'fa-plane';
return 'fa-eject';
case PhabricatorAuditActionConstants::CLOSE:
return 'fa-check';
}
Original file line number Diff line number Diff line change
@@ -162,7 +162,7 @@ private static function getMap() {
self::ABANDONED => array(
'name' => pht('Abandoned'),
'legacy' => 4,
'icon' => 'fa-plane',
'icon' => 'fa-eject',
'closed' => true,
'color.icon' => 'black',
'color.tag' => 'indigo',
Original file line number Diff line number Diff line change
@@ -413,7 +413,7 @@ public function getIcon() {
case DifferentialAction::ACTION_REJECT:
return 'fa-times-circle-o';
case DifferentialAction::ACTION_ABANDON:
return 'fa-plane';
return 'fa-eject';
case DifferentialAction::ACTION_RETHINK:
return 'fa-headphones';
case DifferentialAction::ACTION_REQUEST:
Original file line number Diff line number Diff line change
@@ -19,7 +19,7 @@ protected function getRevisionActionDescription(
}

public function getIcon() {
return 'fa-plane';
return 'fa-eject';
}

public function getColor() {