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:
parent
546d092ebd
commit
482784b9b2
1 changed files with 1 additions and 1 deletions
|
@ -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);
|
||||||
|
|
Loading…
Reference in a new issue