mirror of https://github.com/VERT-sh/VERT.git
Merge branch 'main' of https://github.com/not-nullptr/unnamed-file-converter
This commit is contained in:
commit
5e636c0e30
|
@ -12,6 +12,7 @@ class Files {
|
|||
}[]
|
||||
>([]);
|
||||
public conversionTypes = $state<string[]>([]);
|
||||
public conversionTypesReverse = $derived(this.conversionTypes.reverse());
|
||||
public beenToConverterPage = $state(false);
|
||||
public shouldShowAlert = $derived(
|
||||
!this.beenToConverterPage && this.files.length > 0,
|
||||
|
|
|
@ -299,7 +299,9 @@
|
|||
<Dropdown
|
||||
options={converter.supportedFormats}
|
||||
bind:selected={files
|
||||
.conversionTypes[i]}
|
||||
.conversionTypes[
|
||||
files.files.length - i - 1
|
||||
]}
|
||||
onselect={() => {
|
||||
file.result = null;
|
||||
}}
|
||||
|
|
Loading…
Reference in New Issue