-
Notifications
You must be signed in to change notification settings - Fork 310
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[BUG] Incorrect Presence Display #3336
Comments
@dougroutledge thank you for raising this issue. I wanted to clarify on reproducing this issue:
So the second one is the correct icon to use for "Available Idle" and "Inactive" presence? I also want to draw your attention to this doc https://learn.microsoft.com/en-us/microsoftteams/presence-admins#presence-states-in-teams that we used to create the rendering options based on availability(statuses) and activity. From it we see that the yellow icon is for away (away and away last seen time activities) and be right back statuses. For your case, the availability is 'AvailableIdle' and the activity is unknown, which defaults to the green icon: For "Inactive", it should be like this as this is an unknown status in mgt (and also in the teams presence list) and will display like this: For "Away" the display is correct because the activities we check for are "out of office" or "away last seen time". The "away last seen time" and unknown activities (in this example "Inactive") default to the yellow icon: I'm not sure of the combination of availability status and activity that is causing this mismatch for you. If you can provide more information on this, we can be able to pinpoint the appropriate way to create the correct icon. Here is the functionality that is used to render the icon in the mgt-person component microsoft-graph-toolkit/packages/mgt-components/src/components/mgt-person/mgt-person.ts Lines 771 to 877 in e2edc88
|
The avatar icon with presence displays green when the presence is "Available Idle" and "Inactive" where MS Teams and the other MS apps display the yellow away icon. It corrects once the presence changes to Away, but this should be correct to match the product line.
The text was updated successfully, but these errors were encountered: