From feb6df1aaa895aff634d973b501c1a1e20e20162 Mon Sep 17 00:00:00 2001 From: maxDorninger <97409287+maxDorninger@users.noreply.github.com> Date: Mon, 30 Jun 2025 10:12:01 +0200 Subject: [PATCH] remove links in torrent-table to non-existant torrent pages --- web/src/lib/components/torrent-table.svelte | 24 ++++++--------------- 1 file changed, 6 insertions(+), 18 deletions(-) diff --git a/web/src/lib/components/torrent-table.svelte b/web/src/lib/components/torrent-table.svelte index 1c19384..e5e25ea 100644 --- a/web/src/lib/components/torrent-table.svelte +++ b/web/src/lib/components/torrent-table.svelte @@ -28,36 +28,24 @@ {#each torrents as torrent} - - {isShow ? torrent.torrent_title : torrent.title} - + {isShow ? torrent.torrent_title : torrent.title} {#if isShow} - - {convertTorrentSeasonRangeToIntegerRange(torrent)} - + {convertTorrentSeasonRangeToIntegerRange(torrent)} {/if} - - {getTorrentStatusString(torrent.status)} - + {getTorrentStatusString(torrent.status)} - - {getTorrentQualityString(torrent.quality)} - + {getTorrentQualityString(torrent.quality)} - - {torrent.file_path_suffix} - + {torrent.file_path_suffix} - - - + {/each}