Skip to content

Commit

Permalink
fix(scheduling): Use attendee placeholder avatars
Browse files Browse the repository at this point in the history
Instead of broken user avatars. This is not a comprehensive fix but a
workaround for #3099, which is not trivial to fix.

Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
  • Loading branch information
ChristophWurst authored and backportbot-nextcloud[bot] committed Sep 7, 2023
1 parent 98db265 commit 22fdd9b
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/components/Editor/AvatarParticipationStatus.vue
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,9 @@
<template>
<div class="avatar-participation-status">
<Avatar :disable-tooltip="true"
:user="avatarLink"
:is-no-user="isResource" />
:user="commonName"
:display-name="commonName"
:is-no-user="true" />
<template v-if="participationStatus === 'ACCEPTED' && isViewedByOrganizer">
<IconCheck class="avatar-participation-status__indicator"
fill-color="#32CD32"
Expand Down

0 comments on commit 22fdd9b

Please sign in to comment.