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}