From 7368859d8df037929bff4045a7bed3a448d5669e Mon Sep 17 00:00:00 2001 From: Chad Little Date: Wed, 7 Sep 2016 10:33:26 -0700 Subject: [PATCH] Properly set project icon in timeline Summary: This fixes a bug where the icon won't display since it doesn't include `fa-`. Test Plan: Change icon on a project, revisit timeline and see icon. Reviewers: epriestley Reviewed By: epriestley Subscribers: Korvin Differential Revision: https://secure.phabricator.com/D16512 --- .../project/storage/PhabricatorProjectTransaction.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/applications/project/storage/PhabricatorProjectTransaction.php b/src/applications/project/storage/PhabricatorProjectTransaction.php index 2123afae2c..e5e353fea5 100644 --- a/src/applications/project/storage/PhabricatorProjectTransaction.php +++ b/src/applications/project/storage/PhabricatorProjectTransaction.php @@ -126,7 +126,7 @@ final class PhabricatorProjectTransaction return 'fa-unlock'; } case self::TYPE_ICON: - return $new; + return 'fa-'.$new; case self::TYPE_IMAGE: return 'fa-photo'; case self::TYPE_MEMBERS: