We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5dd454c commit 86f533bCopy full SHA for 86f533b
1 file changed
assets/javascripts/views/sidebar/doc_picker.js
@@ -78,7 +78,7 @@ app.views.DocPicker = class DocPicker extends app.View {
78
}
79
80
getSelectedDocs() {
81
- return this.findAllByTag("input")
+ return [...this.findAllByTag("input")]
82
.filter((input) => input?.checked)
83
.map((input) => input.name);
84
0 commit comments