Skip to content

Commit

Permalink
[#55581] do not show hover card for placeholder users
Browse files Browse the repository at this point in the history
  • Loading branch information
EinLama committed Nov 22, 2024
1 parent 8f8db70 commit 1f5454c
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ export class PrincipalRendererService {
const type = typeFromHref(hrefFromPrincipal(principal)) as PrincipalType;

// Only actual users provide a hover card with additional info
if (type === 'group') {
if (type === 'group' || type === 'placeholder_user') {
avatar.hoverCard = undefined;
}

Expand Down

0 comments on commit 1f5454c

Please sign in to comment.