1
0
Fork 0
mirror of https://we.phorge.it/source/phorge.git synced 2024-12-20 20:40: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:
epriestley 2014-05-15 06:51:01 -07:00
parent f2d72ced4b
commit 7f22958a82

View file

@ -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.'/')));