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:
@@ -117,7 +117,7 @@ final class PhragmentSnapshotViewController extends PhragmentController {
|
||||
->setName(pht('Download Snapshot as ZIP'))
|
||||
->setHref($this->isCorrectlyConfigured() ? $zip_uri : null)
|
||||
->setDisabled(!$this->isCorrectlyConfigured())
|
||||
->setIcon('zip'));
|
||||
->setIcon('fa-floppy-o'));
|
||||
$actions->addAction(
|
||||
id(new PhabricatorActionView())
|
||||
->setName(pht('Delete Snapshot'))
|
||||
@@ -125,7 +125,7 @@ final class PhragmentSnapshotViewController extends PhragmentController {
|
||||
"snapshot/delete/".$snapshot->getID()."/"))
|
||||
->setDisabled(!$can_edit)
|
||||
->setWorkflow(true)
|
||||
->setIcon('delete'));
|
||||
->setIcon('fa-times'));
|
||||
$actions->addAction(
|
||||
id(new PhabricatorActionView())
|
||||
->setName(pht('Promote Another Snapshot to Here'))
|
||||
@@ -133,7 +133,7 @@ final class PhragmentSnapshotViewController extends PhragmentController {
|
||||
"snapshot/promote/".$snapshot->getID()."/"))
|
||||
->setDisabled(!$can_edit)
|
||||
->setWorkflow(true)
|
||||
->setIcon('promote'));
|
||||
->setIcon('fa-arrow-up'));
|
||||
|
||||
$properties = id(new PHUIPropertyListView())
|
||||
->setUser($viewer)
|
||||
|
||||
Reference in New Issue
Block a user