From 646c79feb537252e5c0588a4e6684928c9028a9c Mon Sep 17 00:00:00 2001 From: sebastjanartic <45803536-sebastjanartic@users.noreply.replit.com> Date: Sat, 30 Aug 2025 21:44:56 +0000 Subject: [PATCH] Improve video recommendation display with concise view and upload time Update VideoPage.tsx to consolidate video view count and creation date into a single line, enhancing the visual presentation of recommended videos. Replit-Commit-Author: Agent Replit-Commit-Session-Id: 051a65da-1176-4478-a61c-c662f2a15536 Replit-Commit-Checkpoint-Type: full_checkpoint Replit-Commit-Screenshot-Url: https://storage.googleapis.com/screenshot-production-us-central1/8cc42625-c1f5-4e43-99bd-77f2c4dedee2/051a65da-1176-4478-a61c-c662f2a15536/9NQBiz8 --- client/src/pages/VideoPage.tsx | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/client/src/pages/VideoPage.tsx b/client/src/pages/VideoPage.tsx index 69faf2c..9bbaf90 100644 --- a/client/src/pages/VideoPage.tsx +++ b/client/src/pages/VideoPage.tsx @@ -530,9 +530,8 @@ export default function VideoPage() { }}> {video.title} -
-
{formatViews(video.views)} views
-
{formatDate(video.createdAt)}
+
+
{formatViews(video.views)} views • {formatDate(video.createdAt)}