1
0
Fork 0
mirror of https://we.phorge.it/source/phorge.git synced 2024-11-10 00:42:41 +01:00

Restore green color on mobile calendar month view when a day contains events you are invited to

Summary: Ref T11816. This got dropped somewhere along the way, so the mobile month view no longer showed a green-colored hint if a day has events you're invited to.

Test Plan: Viewed Calendar month view on mobile, saw green circles for days with invited events.

Reviewers: chad

Reviewed By: chad

Maniphest Tasks: T11816

Differential Revision: https://secure.phabricator.com/D16852
This commit is contained in:
epriestley 2016-11-13 12:25:10 -08:00
parent 037793ab60
commit c9e140e283

View file

@ -373,6 +373,7 @@ final class PhabricatorCalendarEventSearchEngine
->setURI($event->getURI())
->setIsAllDay($event->getIsAllDay())
->setIcon($event->getDisplayIcon($viewer))
->setViewerIsInvited($event->getIsUserInvited($viewer->getPHID()))
->setIconColor($event->getDisplayIconColor($viewer));
$month_view->addEvent($event_view);