diff --git a/src/lib/components/functional/ConversionPanel.svelte b/src/lib/components/functional/ConversionPanel.svelte index 4f75440..823e69b 100644 --- a/src/lib/components/functional/ConversionPanel.svelte +++ b/src/lib/components/functional/ConversionPanel.svelte @@ -28,7 +28,7 @@
-

Set all to

+

Set all to

{#if files.requiredConverters.length === 1} diff --git a/src/lib/components/functional/Dropdown.svelte b/src/lib/components/functional/Dropdown.svelte index 7daabb1..515bdd4 100644 --- a/src/lib/components/functional/Dropdown.svelte +++ b/src/lib/components/functional/Dropdown.svelte @@ -8,14 +8,14 @@ options: string[]; selected?: string; onselect?: (option: string) => void; - disabled?: boolean + disabled?: boolean; }; let { options, selected = $bindable(options[0]), onselect, - disabled + disabled, }: Props = $props(); let open = $state(false); @@ -48,16 +48,21 @@ }); -
+
-
-
- {file.name} +
+
+
+ {file.name} +
-
-
- file.result && (file.result = null)} - /> -
- - +
+ file.result && (file.result = null)} + /> +
+ + +