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 ? (