mirror of
https://we.phorge.it/source/phorge.git
synced 2024-12-20 12:30:56 +01:00
Use font icons on user approval queue
Summary: Fixes T5066. Test Plan: {F155058} Reviewers: chad, btrahan, shadowhand Reviewed By: shadowhand Subscribers: shadowhand, epriestley Maniphest Tasks: T5066 Differential Revision: https://secure.phabricator.com/D9133
This commit is contained in:
parent
f2d72ced4b
commit
7f22958a82
1 changed files with 2 additions and 2 deletions
|
@ -89,13 +89,13 @@ final class PhabricatorPeopleListController extends PhabricatorPeopleController
|
|||
if ($is_approval) {
|
||||
$item->addAction(
|
||||
id(new PHUIListItemView())
|
||||
->setIcon('disable')
|
||||
->setIcon('fa-ban')
|
||||
->setName(pht('Disable'))
|
||||
->setWorkflow(true)
|
||||
->setHref($this->getApplicationURI('disapprove/'.$user_id.'/')));
|
||||
$item->addAction(
|
||||
id(new PHUIListItemView())
|
||||
->setIcon('like')
|
||||
->setIcon('fa-thumbs-o-up')
|
||||
->setName(pht('Approve'))
|
||||
->setWorkflow(true)
|
||||
->setHref($this->getApplicationURI('approve/'.$user_id.'/')));
|
||||
|
|
Loading…
Reference in a new issue