From b836697e2ae52a447c52996bf9ead8d9b1e88552 Mon Sep 17 00:00:00 2001 From: MerlinScheurer Date: Thu, 30 Jan 2025 20:11:12 +0100 Subject: [PATCH] Fix missing formatNumbers on dislike count --- frontend/src/pages/Video.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/pages/Video.tsx b/frontend/src/pages/Video.tsx index b09544cd..48250db1 100644 --- a/frontend/src/pages/Video.tsx +++ b/frontend/src/pages/Video.tsx @@ -287,7 +287,7 @@ const Video = () => { {video.stats.dislike_count > 0 && (

thumbs-down:{' '} - {video.stats.dislike_count} + {formatNumbers(video.stats.dislike_count)}

)} {video?.stats && starRating && (