diff --git a/tubearchivist/static/script.js b/tubearchivist/static/script.js
index 47a28de2..7e760bf8 100644
--- a/tubearchivist/static/script.js
+++ b/tubearchivist/static/script.js
@@ -1167,7 +1167,8 @@ function createCommentBox(comment, isRoot) {
commentMeta.innerHTML = `${comment.comment_time_text}`;
if (comment.comment_likecount > 0) {
- commentMeta.innerHTML += `${spacer} ${comment.comment_likecount}`;
+ let numberFormatted = formatNumbers(comment.comment_likecount)
+ commentMeta.innerHTML += `${spacer} ${numberFormatted}`;
}
if (comment.comment_is_favorited) {