mirror of
https://github.com/maxdorninger/MediaManager.git
synced 2026-04-17 15:13:24 +02:00
move file path suffix components to download dialogs folder
This commit is contained in:
@@ -10,7 +10,7 @@
|
||||
import * as Tabs from '$lib/components/ui/tabs';
|
||||
import * as Table from '$lib/components/ui/table';
|
||||
import client from '$lib/api';
|
||||
import SelectFilePathSuffixDialog from '$lib/components/select-file-path-suffix-dialog.svelte';
|
||||
import SelectFilePathSuffixDialog from '$lib/components/download-dialogs/select-file-path-suffix-dialog.svelte';
|
||||
import { invalidateAll } from '$app/navigation';
|
||||
|
||||
let { movie } = $props();
|
||||
|
||||
@@ -14,7 +14,7 @@
|
||||
import { Badge } from '$lib/components/ui/badge';
|
||||
import client from '$lib/api';
|
||||
import type { components } from '$lib/api/api';
|
||||
import SelectFilePathSuffixDialog from '$lib/components/select-file-path-suffix-dialog.svelte';
|
||||
import SelectFilePathSuffixDialog from '$lib/components/download-dialogs/select-file-path-suffix-dialog.svelte';
|
||||
import { invalidateAll } from '$app/navigation';
|
||||
|
||||
let { show }: { show: components['schemas']['Show'] } = $props();
|
||||
|
||||
@@ -1,9 +1,9 @@
|
||||
<script lang="ts">
|
||||
import { Label } from '$lib/components/ui/label/index.js';
|
||||
import * as Select from '$lib/components/ui/select/index.js';
|
||||
import { Label } from '$lib/components/ui/label';
|
||||
import * as Select from '$lib/components/ui/select';
|
||||
import { saveDirectoryPreview } from '$lib/utils.js';
|
||||
import type { components } from '$lib/api/api';
|
||||
import * as Tabs from '$lib/components/ui/tabs/index.js';
|
||||
import * as Tabs from '$lib/components/ui/tabs';
|
||||
|
||||
import { Input } from '$lib/components/ui/input';
|
||||
let {
|
||||
@@ -1,7 +1,7 @@
|
||||
<script lang="ts">
|
||||
import { Button } from '$lib/components/ui/button/index.js';
|
||||
import * as Dialog from '$lib/components/ui/dialog/index.js';
|
||||
import FilePathSuffixSelector from '$lib/components/file-path-suffix-selector.svelte';
|
||||
import { Button } from '$lib/components/ui/button';
|
||||
import * as Dialog from '$lib/components/ui/dialog';
|
||||
import FilePathSuffixSelector from '$lib/components/download-dialogs/file-path-suffix-selector.svelte';
|
||||
import type { components } from '$lib/api/api';
|
||||
|
||||
let {
|
||||
Reference in New Issue
Block a user