|
@@ -78,7 +78,7 @@ app.views.DocPicker = class DocPicker extends app.View {
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
getSelectedDocs() {
|
|
getSelectedDocs() {
|
|
|
- return this.findAllByTag("input")
|
|
|
|
|
|
|
+ return [...this.findAllByTag("input")]
|
|
|
.filter((input) => input?.checked)
|
|
.filter((input) => input?.checked)
|
|
|
.map((input) => input.name);
|
|
.map((input) => input.name);
|
|
|
}
|
|
}
|