diff --git a/resources/vue/components/blubber/Comment.vue b/resources/vue/components/blubber/Comment.vue index 93d7432b35ebd79abf9a1929f12a8156402c3cb2..b6986e60020d4f3dad9fc5b298dfd7c8d93a0760 100644 --- a/resources/vue/components/blubber/Comment.vue +++ b/resources/vue/components/blubber/Comment.vue @@ -52,7 +52,7 @@ export default { }, computed: { commentAvatar() { - return this.comment.author?.avatar.small ?? ''; + return this.comment.author?.avatar.medium ?? ''; }, commentClass() { return this.comment.isMine() ? 'mine' : 'theirs';