diff --git a/.replit b/.replit index 5b437fe..0801e05 100644 --- a/.replit +++ b/.replit @@ -16,7 +16,7 @@ localPort = 5000 externalPort = 80 [[ports]] -localPort = 37975 +localPort = 40997 externalPort = 3000 [env] diff --git a/attached_assets/image_1758098121575.png b/attached_assets/image_1758098121575.png new file mode 100644 index 0000000..9f68cce Binary files /dev/null and b/attached_assets/image_1758098121575.png differ diff --git a/client/src/pages/FolxStadlPage.tsx b/client/src/pages/FolxStadlPage.tsx index 78257f8..ae3ecb5 100644 --- a/client/src/pages/FolxStadlPage.tsx +++ b/client/src/pages/FolxStadlPage.tsx @@ -22,23 +22,16 @@ export default function FolxStadlPage() { const itemsPerPage = 10; const { data, isLoading } = useQuery<{videos: Video[], total: number}>({ - queryKey: ['/api/videos?limit=200'], + queryKey: ['/api/videos?limit=600'], select: (response) => response || { videos: [], total: 0 } }); const videos = data?.videos || []; - console.log('📺 FolxStadlPage: Total videos loaded:', videos.length); // Filter all FOLX STADL videos (including all seasons and formats) const folxStadlVideos = videos.filter(video => video.title.includes("FOLX STADL") || video.title.includes("FOLXSTADL") ); - console.log('🎪 FolxStadlPage: FOLX STADL videos found:', folxStadlVideos.length); - - // Debug: Show sample titles - if (videos.length > 0) { - console.log('📋 Sample video titles:', videos.slice(0, 5).map(v => v.title)); - } // Pagination logic const totalPages = Math.ceil(folxStadlVideos.length / itemsPerPage); diff --git a/client/src/pages/GeschichteLiedPage.tsx b/client/src/pages/GeschichteLiedPage.tsx index 6ed50bf..269880e 100644 --- a/client/src/pages/GeschichteLiedPage.tsx +++ b/client/src/pages/GeschichteLiedPage.tsx @@ -22,7 +22,7 @@ export default function GeschichteLiedPage() { const itemsPerPage = 10; const { data, isLoading } = useQuery<{videos: Video[], total: number}>({ - queryKey: ['/api/videos?limit=200'], + queryKey: ['/api/videos?limit=600'], select: (response) => response || { videos: [], total: 0 } }); diff --git a/client/src/pages/GipfelstammtischPage.tsx b/client/src/pages/GipfelstammtischPage.tsx index f607ccb..d96c5f1 100644 --- a/client/src/pages/GipfelstammtischPage.tsx +++ b/client/src/pages/GipfelstammtischPage.tsx @@ -22,7 +22,7 @@ export default function GipfelstammtischPage() { const itemsPerPage = 10; const { data, isLoading } = useQuery<{videos: Video[], total: number}>({ - queryKey: ['/api/videos?limit=200'], + queryKey: ['/api/videos?limit=600'], select: (response) => response || { videos: [], total: 0 } });