From bd7e9090b2080b184fe1655f8b69275e8551fe4e Mon Sep 17 00:00:00 2001 From: maxid <97409287+maxdorninger@users.noreply.github.com> Date: Sat, 3 Jan 2026 12:10:24 +0100 Subject: [PATCH] create torrent components folder --- .../{ => torrents}/delete-torrent-dialog.svelte | 4 ++-- .../components/{ => torrents}/edit-torrent-dialog.svelte | 4 ++-- .../lib/components/{ => torrents}/torrent-table.svelte | 8 ++++---- .../routes/dashboard/movies/[movieId=uuid]/+page.svelte | 2 +- web/src/routes/dashboard/movies/torrents/+page.svelte | 2 +- web/src/routes/dashboard/tv/[showId=uuid]/+page.svelte | 2 +- web/src/routes/dashboard/tv/torrents/+page.svelte | 2 +- 7 files changed, 12 insertions(+), 12 deletions(-) rename web/src/lib/components/{ => torrents}/delete-torrent-dialog.svelte (96%) rename web/src/lib/components/{ => torrents}/edit-torrent-dialog.svelte (93%) rename web/src/lib/components/{ => torrents}/torrent-table.svelte (91%) diff --git a/web/src/lib/components/delete-torrent-dialog.svelte b/web/src/lib/components/torrents/delete-torrent-dialog.svelte similarity index 96% rename from web/src/lib/components/delete-torrent-dialog.svelte rename to web/src/lib/components/torrents/delete-torrent-dialog.svelte index b16af8f..c36e325 100644 --- a/web/src/lib/components/delete-torrent-dialog.svelte +++ b/web/src/lib/components/torrents/delete-torrent-dialog.svelte @@ -1,8 +1,8 @@ diff --git a/web/src/routes/dashboard/tv/[showId=uuid]/+page.svelte b/web/src/routes/dashboard/tv/[showId=uuid]/+page.svelte index 90d18e6..39d2c10 100644 --- a/web/src/routes/dashboard/tv/[showId=uuid]/+page.svelte +++ b/web/src/routes/dashboard/tv/[showId=uuid]/+page.svelte @@ -11,7 +11,7 @@ import DownloadSeasonDialog from '$lib/components/download-dialogs/download-season-dialog.svelte'; import CheckmarkX from '$lib/components/checkmark-x.svelte'; import { page } from '$app/state'; - import TorrentTable from '$lib/components/torrent-table.svelte'; + import TorrentTable from '$lib/components/torrents/torrent-table.svelte'; import RequestSeasonDialog from '$lib/components/request-dialogs/request-season-dialog.svelte'; import MediaPicture from '$lib/components/media-picture.svelte'; import { Switch } from '$lib/components/ui/switch/index.js'; diff --git a/web/src/routes/dashboard/tv/torrents/+page.svelte b/web/src/routes/dashboard/tv/torrents/+page.svelte index 5650812..64954fd 100644 --- a/web/src/routes/dashboard/tv/torrents/+page.svelte +++ b/web/src/routes/dashboard/tv/torrents/+page.svelte @@ -6,7 +6,7 @@ import { getFullyQualifiedMediaName } from '$lib/utils'; import * as Accordion from '$lib/components/ui/accordion/index.js'; import * as Card from '$lib/components/ui/card/index.js'; - import TorrentTable from '$lib/components/torrent-table.svelte'; + import TorrentTable from '$lib/components/torrents/torrent-table.svelte'; import { resolve } from '$app/paths';