From 31cef555a972f7d44d6bc0c8116946df975aa7b0 Mon Sep 17 00:00:00 2001 From: Mattias Thall Date: Wed, 27 May 2026 00:07:55 +0200 Subject: [PATCH] Cap list view description to 3 lines Co-Authored-By: Claude Sonnet 4.6 --- frontend/src/components/VideoCard.jsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/components/VideoCard.jsx b/frontend/src/components/VideoCard.jsx index fe1d941..6117d9f 100644 --- a/frontend/src/components/VideoCard.jsx +++ b/frontend/src/components/VideoCard.jsx @@ -313,7 +313,7 @@ export default function VideoCard({ video, size = "md", onDismiss, variant = "gr {/* Description snippet — desktop only, URLs stripped */} {video.description && snippetText(video.description) && ( -

+

{snippetText(video.description)}

)}