Skip to content

Commit 20fa574

Browse files
committed
Fix foldmason accession loading
1 parent 9b7c45d commit 20fa574

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

frontend/LoadAcessionButton.vue

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,10 @@ export default {
109109
if (list.length === 0) {
110110
return;
111111
}
112-
this.loadMany(list, this.source);
112+
let combined = list.map((e, _) => {
113+
return [e, this.source];
114+
});
115+
this.loadMany(combined);
113116
} else {
114117
this.load(this.accession, this.source);
115118
}

0 commit comments

Comments
 (0)