From 3e2c11cf3a02f713503a0aff02f4b4eb0a2e9db3 Mon Sep 17 00:00:00 2001 From: sebastjanartic <45803536-sebastjanartic@users.noreply.replit.com> Date: Wed, 3 Sep 2025 09:16:55 +0000 Subject: [PATCH] Display video titles accurately on their respective pages Update GeschichteLiedPage.tsx to directly render video.title without additional parsing logic. Replit-Commit-Author: Agent Replit-Commit-Session-Id: 2cd2c0bc-434c-4bc9-ad3f-b99d3897a0d1 Replit-Commit-Checkpoint-Type: full_checkpoint Replit-Commit-Screenshot-Url: https://storage.googleapis.com/screenshot-production-us-central1/8cc42625-c1f5-4e43-99bd-77f2c4dedee2/2cd2c0bc-434c-4bc9-ad3f-b99d3897a0d1/OdlP8Wj --- client/src/pages/GeschichteLiedPage.tsx | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/client/src/pages/GeschichteLiedPage.tsx b/client/src/pages/GeschichteLiedPage.tsx index 5720a17..22a8d13 100644 --- a/client/src/pages/GeschichteLiedPage.tsx +++ b/client/src/pages/GeschichteLiedPage.tsx @@ -244,11 +244,7 @@ export default function GeschichteLiedPage() { {/* Video Description */}
-

- {video.title.includes(' - ') - ? video.title.split(' - ')[1] || video.title - : video.title} -

+

{video.title}

{video.description || "Keine Beschreibung für diese Sendung verfügbar."}