mirror of
https://github.com/maxdorninger/MediaManager.git
synced 2026-04-24 01:35:35 +02:00
improve how the download_url field is excluded from the response model
This commit is contained in:
@@ -227,7 +227,7 @@
|
||||
<Table.Cell>{(torrent.size / 1024 / 1024 / 1024).toFixed(2)}GB</Table.Cell>
|
||||
<Table.Cell>{torrent.seeders}</Table.Cell>
|
||||
<Table.Cell>{torrent.score}</Table.Cell>
|
||||
<Table.Cell>{torrent.indexer ?? "Unknown"}</Table.Cell>
|
||||
<Table.Cell>{torrent.indexer ?? 'Unknown'}</Table.Cell>
|
||||
<Table.Cell>
|
||||
{#each torrent.flags as flag (flag)}
|
||||
<Badge variant="outline">{flag}</Badge>
|
||||
|
||||
@@ -273,7 +273,7 @@
|
||||
: ''}</Table.Cell
|
||||
>
|
||||
<Table.Cell>{torrent.score}</Table.Cell>
|
||||
<Table.Cell>{torrent.indexer ?? "unknown"}</Table.Cell>
|
||||
<Table.Cell>{torrent.indexer ?? 'unknown'}</Table.Cell>
|
||||
<Table.Cell>
|
||||
{#if torrent.flags}
|
||||
{#each torrent.flags as flag (flag)}
|
||||
|
||||
Reference in New Issue
Block a user