We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9b7c45d commit 20fa574Copy full SHA for 20fa574
frontend/LoadAcessionButton.vue
@@ -109,7 +109,10 @@ export default {
109
if (list.length === 0) {
110
return;
111
}
112
- this.loadMany(list, this.source);
+ let combined = list.map((e, _) => {
113
+ return [e, this.source];
114
+ });
115
+ this.loadMany(combined);
116
} else {
117
this.load(this.accession, this.source);
118
0 commit comments