From 4b9444f1a5b7bf3c07b2b5a6cb045da3e84c1c78 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bar=C4=B1=C5=9F=20Soner=20U=C5=9Fakl=C4=B1?= Date: Wed, 14 Oct 2020 00:12:09 -0400 Subject: [PATCH] fix: avatar selector --- public/src/client/topic/replies.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/public/src/client/topic/replies.js b/public/src/client/topic/replies.js index 5f3aeaad35..bbdde3be62 100644 --- a/public/src/client/topic/replies.js +++ b/public/src/client/topic/replies.js @@ -93,7 +93,7 @@ define('forum/topic/replies', ['navigator', 'components', 'forum/topic/posts'], if (!avatars.find('[data-uid="' + post.uid + '"]').length && count < 7) { app.parseAndTranslate('topic', 'posts', { posts: [{ replies: { users: [post.user] } }] }, function (html) { - avatars.prepend(html.find('[component="post/reply-count/avatars"] [component="user/picture"]')); + avatars.prepend(html.find('[component="post/reply-count/avatars"] [component="avatar/picture"]')); }); }