Found some missing icons
Summary: Did a more exhaustive grep on setIcon and found 99.9% of the icons. Test Plan: I verified icon names on UIExamples, but unable to test some of the more complex flows visually. Mostly a read and replace. Reviewers: epriestley Reviewed By: epriestley Subscribers: epriestley, Korvin, hach-que Differential Revision: https://secure.phabricator.com/D9088
This commit is contained in:
@@ -92,7 +92,7 @@ final class PhabricatorWorkerTaskDetailController
|
||||
id(new PhabricatorActionView())
|
||||
->setName(pht('Retry Task'))
|
||||
->setHref($this->getApplicationURI('/task/'.$id.'/retry/'))
|
||||
->setIcon('undo')
|
||||
->setIcon('fa-refresh')
|
||||
->setWorkflow(true)
|
||||
->setDisabled(!$can_retry));
|
||||
} else {
|
||||
@@ -100,7 +100,7 @@ final class PhabricatorWorkerTaskDetailController
|
||||
id(new PhabricatorActionView())
|
||||
->setName(pht('Cancel Task'))
|
||||
->setHref($this->getApplicationURI('/task/'.$id.'/cancel/'))
|
||||
->setIcon('delete')
|
||||
->setIcon('fa-times')
|
||||
->setWorkflow(true));
|
||||
}
|
||||
|
||||
@@ -111,7 +111,7 @@ final class PhabricatorWorkerTaskDetailController
|
||||
id(new PhabricatorActionView())
|
||||
->setName(pht('Free Lease'))
|
||||
->setHref($this->getApplicationURI('/task/'.$id.'/release/'))
|
||||
->setIcon('unlock')
|
||||
->setIcon('fa-unlock')
|
||||
->setWorkflow(true)
|
||||
->setDisabled(!$can_release));
|
||||
|
||||
|
||||
Reference in New Issue
Block a user