diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/frontend/tubo/comments/views.cljs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/frontend/tubo/comments/views.cljs b/src/frontend/tubo/comments/views.cljs index 6d558e4..524b837 100644 --- a/src/frontend/tubo/comments/views.cljs +++ b/src/frontend/tubo/comments/views.cljs @@ -34,7 +34,7 @@ (when (and like-count (> like-count 0)) [:div.flex.items-center.my-2 [:i.fa-solid.fa-thumbs-up.text-xs] - [:p.mx-1 like-count]]) + [:p.mx-1 (utils/format-quantity like-count)]]) (when hearted-by-uploader? [:div.relative.w-4.h-4.mx-2 [:i.fa-solid.fa-heart.absolute.-bottom-1.-right-1.text-xs.text-red-500] |