diff --git a/components/ArticleReplyFeedbackControl/ReasonsDisplay.js b/components/ArticleReplyFeedbackControl/ReasonsDisplay.js index 5cdd5b2f..e3cd2be9 100644 --- a/components/ArticleReplyFeedbackControl/ReasonsDisplay.js +++ b/components/ArticleReplyFeedbackControl/ReasonsDisplay.js @@ -78,7 +78,7 @@ function processedFeedbacks(feedbacks, voteType, isLoadMore) { .filter(({ vote }) => vote === voteType) .sort( (a, b) => - isEmptyComment(b.comment) - isEmptyComment(a.comment) || + isEmptyComment(a.comment) - isEmptyComment(b.comment) || b.createdAt.localeCompare(a.createdAt) ) .slice(0, isLoadMore ? feedbacks.length : Math.min(feedbacks.length, 10));