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",
|
text: "No",
|
||||||
action: () => {
|
action: () => {
|
||||||
this.files = this.files.filter((f) =>
|
this.files = [
|
||||||
f.converters
|
...this.files.filter(
|
||||||
.map((c) => c.name)
|
(f) =>
|
||||||
.includes("vertd"),
|
!f.converters
|
||||||
);
|
.map((c) => c.name)
|
||||||
|
.includes("vertd"),
|
||||||
|
),
|
||||||
|
];
|
||||||
this._warningShown = false;
|
this._warningShown = false;
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
|
Loading…
Reference in New Issue