mirror of https://github.com/VERT-sh/VERT.git
fix: pressing no on the upload thing didnt do much...
This commit is contained in:
parent
8017d5d72d
commit
d96cfbd306
|
@ -148,11 +148,14 @@ class Files {
|
|||
{
|
||||
text: "No",
|
||||
action: () => {
|
||||
this.files = this.files.filter((f) =>
|
||||
f.converters
|
||||
this.files = [
|
||||
...this.files.filter(
|
||||
(f) =>
|
||||
!f.converters
|
||||
.map((c) => c.name)
|
||||
.includes("vertd"),
|
||||
);
|
||||
),
|
||||
];
|
||||
this._warningShown = false;
|
||||
},
|
||||
},
|
||||
|
|
Loading…
Reference in New Issue