diff options
| author | Jan-Hendrik Willms <tleilax+studip@gmail.com> | 2024-03-17 12:37:49 +0000 |
|---|---|---|
| committer | Jan-Hendrik Willms <tleilax+studip@gmail.com> | 2024-03-17 12:37:49 +0000 |
| commit | 0e6fdeadeca43045dbea72b7468a52cbf0cc9e4e (patch) | |
| tree | 9444a62018e003515d3ce2eebb68311d7bac20f2 | |
| parent | 7f5942b559acb2df498ba50089d3bf4027579056 (diff) | |
fixes #3820
Closes #3820
Merge request studip/studip!2683
| -rw-r--r-- | resources/vue/components/blubber/Comment.vue | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/resources/vue/components/blubber/Comment.vue b/resources/vue/components/blubber/Comment.vue index 320841b..0cc2644 100644 --- a/resources/vue/components/blubber/Comment.vue +++ b/resources/vue/components/blubber/Comment.vue @@ -68,7 +68,7 @@ export default { }, computed: { commentAvatar() { - return this.comment.author?.avatar.small ?? ''; + return this.comment.author?.avatar.medium ?? ''; }, commentClass() { return this.comment.isMine() ? 'mine' : 'theirs'; |
