From d5c5a8488ce698eadebde2e9842fb183eb14d9a9 Mon Sep 17 00:00:00 2001 From: Linrador <68631622+Linrador@users.noreply.github.com> Date: Mon, 9 Mar 2026 15:17:30 +0100 Subject: [PATCH] changed finished card view --- .../components/ui/FinishedDownloadsCardsView.tsx | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/frontend/src/components/ui/FinishedDownloadsCardsView.tsx b/frontend/src/components/ui/FinishedDownloadsCardsView.tsx index 74d68f5..42ce69e 100644 --- a/frontend/src/components/ui/FinishedDownloadsCardsView.tsx +++ b/frontend/src/components/ui/FinishedDownloadsCardsView.tsx @@ -879,7 +879,12 @@ export default function FinishedDownloadsCardsView({ const stackExtraTopPx = (Math.min(mobileVisibleStackRows.length, mobileStackDepth) - 1) return ( -
+
{!isSmall ? (
{rows.map((j) => { @@ -913,10 +918,9 @@ export default function FinishedDownloadsCardsView({ return ( <> - {/* Hintere Karten zuerst (absolut, dekorativ) */} {backRows .map((j, backIdx) => { - const idx = backIdx + 1 // 1,2... + const idx = backIdx + 1 const { k, cardInner } = renderCardItem(j, { forceStill: true, disableInline: true, @@ -953,7 +957,6 @@ export default function FinishedDownloadsCardsView({ }) .reverse()} - {/* Oberste Karte im Flow -> bestimmt die echte Höhe */} {topRow ? (() => { const j = topRow const { k, busy, isHot, cardInner, inlineDomId } = renderCardItem(j, { @@ -1018,7 +1021,6 @@ export default function FinishedDownloadsCardsView({ })()}
- {/* ✅ Hidden preloader (mobile): nur wenige nächste Cards, sonst UI träge */} {mobileStillPreloadRows.length > 0 ? (