diff options
author | Miguel Ángel Moreno <mail@migalmoreno.com> | 2024-12-03 22:36:48 +0100 |
---|---|---|
committer | Miguel Ángel Moreno <mail@migalmoreno.com> | 2024-12-03 22:37:07 +0100 |
commit | 5b00f59ba1451b9d1dfbe7cb8a3d0dbc28c7d170 (patch) | |
tree | 322210f5bf2ba7be8cdaebadcec395aac530a73a | |
parent | 17e26157318dd64e41e50522e9e5af64300683f0 (diff) |
feat: format comments like count
-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] |