From 994e558090c28aacf05c5e620023e63155d6fc2d Mon Sep 17 00:00:00 2001 From: maxDorninger <97409287+maxDorninger@users.noreply.github.com> Date: Mon, 27 Oct 2025 21:48:30 +0100 Subject: [PATCH] fix torrent table using id and not torrent_id as identifying property --- web/src/lib/components/torrent-table.svelte | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/src/lib/components/torrent-table.svelte b/web/src/lib/components/torrent-table.svelte index ee87b82..b61cd5d 100644 --- a/web/src/lib/components/torrent-table.svelte +++ b/web/src/lib/components/torrent-table.svelte @@ -25,7 +25,7 @@ - {#each torrents as torrent (torrent.id)} + {#each torrents as torrent (torrent.torrent_id)} {torrent.torrent_title}