diff options
Diffstat (limited to 'src/frontend')
-rw-r--r-- | src/frontend/tubo/components/comments.cljs | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/frontend/tubo/components/comments.cljs b/src/frontend/tubo/components/comments.cljs index 8a21351..9886bdd 100644 --- a/src/frontend/tubo/components/comments.cljs +++ b/src/frontend/tubo/components/comments.cljs @@ -26,9 +26,8 @@ [:a {:href (rfe/href :tubo.routes/channel nil {:url uploader-url}) :title uploader-name} [:h1.text-neutral-800.dark:text-gray-300.font-bold.line-clamp-1 uploader-name]] (when stream-position - [:div.text-neutral-600.dark:text-neutral-300.flex.items-center - [:span.mx-2.mb-1.text-xs {:dangerouslySetInnerHTML {:__html "•"}}] - [:span.text-xs.whitespace-nowrap (util/format-duration stream-position)]])]) + [:div.text-neutral-600.dark:text-neutral-300 + [:span.mx-2.text-xs.whitespace-nowrap (util/format-duration stream-position)]])]) (when uploader-verified? [:i.fa-solid.fa-circle-check.ml-2])] [:div.my-2 |