mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-18 12:52:42 +01:00
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
This commit is contained in:
parent
9f43091714
commit
7368859d8d
1 changed files with 1 additions and 1 deletions
|
@ -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:
|
||||
|
|
Loading…
Reference in a new issue