Skip to content

Commit

Permalink
fix(highlights-view): fix missing avatar in action item comments
Browse files Browse the repository at this point in the history
Add users data to comment for proper avatar display.
  • Loading branch information
soyacz committed Jan 8, 2025
1 parent 2e6ae9e commit 3b46d21
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion frontend/Views/Widgets/ViewHighlights/ActionItem.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@
<div class="mt-2 col-md-10">
<ul class="list-group list-group-flush">
{#each action.comments as comment (comment.id)}
<Comment {comment} {currentUserId} {action} on:deleteComment on:updateCommentContent/>
<Comment {comment} {currentUserId} {action} {users} on:deleteComment on:updateCommentContent/>
{/each}
</ul>
{#if !action.isArchived}
Expand Down

0 comments on commit 3b46d21

Please sign in to comment.