From 1060736e895b7761fbcc1653635f82bbfd3ca94e Mon Sep 17 00:00:00 2001 From: Andre Klapper Date: Mon, 12 Jun 2023 17:28:16 +0200 Subject: [PATCH] Fix some icons not displayed on UIExamples' "Icons and Images" (PHUIIconExample) page Summary: Fix three typos in icon names Closes T15454 Test Plan: Go to `/uiexample/view/PHUIIconExample/` before and after applying the change; compare icons displayed for `fa-codiepie`, `fa-user-o`, `fa-thermometer-0` Reviewers: O1 Blessed Committers, valerio.bozzolan Reviewed By: O1 Blessed Committers, valerio.bozzolan Subscribers: speck, tobiaswiese, valerio.bozzolan, Matthew, Cigaryno Maniphest Tasks: T15454 Differential Revision: https://we.phorge.it/D25280 --- src/view/phui/PHUIIconView.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/view/phui/PHUIIconView.php b/src/view/phui/PHUIIconView.php index a5897e02d6..5a6bba71b1 100644 --- a/src/view/phui/PHUIIconView.php +++ b/src/view/phui/PHUIIconView.php @@ -780,7 +780,7 @@ final class PHUIIconView extends AphrontTagView { 'fa-reddit-alien', 'fa-edge', 'fa-credit-card-alt', - 'fa-codiepie:before', + 'fa-codiepie', 'fa-modx', 'fa-fort-awesome', 'fa-usb', @@ -843,7 +843,7 @@ final class PHUIIconView extends AphrontTagView { 'fa-address-card-o', 'fa-user-circle', 'fa-user-circle-o', - 'fa-user-o:before', + 'fa-user-o', 'fa-id-badge', 'fa-drivers-license', 'fa-id-card', @@ -861,7 +861,7 @@ final class PHUIIconView extends AphrontTagView { 'fa-thermometer-half', 'fa-thermometer-1', 'fa-thermometer-quarter', - 'fa-thermometer-0:', + 'fa-thermometer-0', 'fa-thermometer-empty', 'fa-shower', 'fa-bathtub',