mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-10 00:42:41 +01:00
On @username
mentions in remarkup, show the "busy" dot color
Summary: Ref T11809. I missed this when adding a "Busy" status. Also the other dot is orange? Just make them all orange for consistency. Test Plan: Viewed `@username` of busy users (orange), away users (red). Reviewers: chad Reviewed By: chad Maniphest Tasks: T11809 Differential Revision: https://secure.phabricator.com/D16819
This commit is contained in:
parent
729492a8ff
commit
6a7dde03cc
2 changed files with 7 additions and 2 deletions
|
@ -76,7 +76,7 @@ final class PhabricatorCalendarEventInvitee extends PhabricatorCalendarDAO
|
|||
'name' => pht('Available'),
|
||||
),
|
||||
self::AVAILABILITY_BUSY => array(
|
||||
'color' => 'yellow',
|
||||
'color' => 'orange',
|
||||
'name' => pht('Busy'),
|
||||
),
|
||||
self::AVAILABILITY_AWAY => array(
|
||||
|
|
|
@ -154,7 +154,12 @@ final class PhabricatorMentionRemarkupRule extends PhutilRemarkupRule {
|
|||
$tag->setDotColor(PHUITagView::COLOR_GREY);
|
||||
} else {
|
||||
if ($user->getAwayUntil()) {
|
||||
$tag->setDotColor(PHUITagView::COLOR_RED);
|
||||
$away = PhabricatorCalendarEventInvitee::AVAILABILITY_AWAY;
|
||||
if ($user->getDisplayAvailability() == $away) {
|
||||
$tag->setDotColor(PHUITagView::COLOR_RED);
|
||||
} else {
|
||||
$tag->setDotColor(PHUITagView::COLOR_ORANGE);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue