1
0
Fork 0
mirror of https://we.phorge.it/source/phorge.git synced 2024-12-19 12:00:55 +01:00

Flag - fix purple flag

Summary: purple != violet, and in our CSS we call these things by the fanciest of terms. Fixes T5995.

Test Plan: flagged something purple and saw that the "remove purple flag" flag was indeed purple. quickly tested other colors and they all seem good too.

Reviewers: epriestley, chad

Reviewed By: chad

Subscribers: epriestley, Korvin

Maniphest Tasks: T5995

Differential Revision: https://secure.phabricator.com/D10389
This commit is contained in:
Bob Trahan 2014-08-29 14:40:16 -07:00
parent 546d092ebd
commit 482784b9b2

View file

@ -40,7 +40,7 @@ final class PhabricatorFlagColor extends PhabricatorFlagConstants {
self::COLOR_GREEN => 'fa-flag green', self::COLOR_GREEN => 'fa-flag green',
self::COLOR_BLUE => 'fa-flag blue', self::COLOR_BLUE => 'fa-flag blue',
self::COLOR_PINK => 'fa-flag indigo', // whhaaaa self::COLOR_PINK => 'fa-flag indigo', // whhaaaa
self::COLOR_PURPLE => 'fa-flag purple', self::COLOR_PURPLE => 'fa-flag violet',
self::COLOR_CHECKERED => 'fa-flag-checkered', self::COLOR_CHECKERED => 'fa-flag-checkered',
); );
return idx($map, $color); return idx($map, $color);