We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9984f3b commit 68b849cCopy full SHA for 68b849c
1 file changed
src/components/DownloadButton.vue
@@ -52,6 +52,8 @@ export default {
52
}
53
this.downloading = true;
54
let filter = this.browsingOptions.filter;
55
+ let query = this.browsingOptions.query;
56
+ debugger
57
let limit = 100;
58
let sort = this.browsingOptions.sort;
59
let total = this.total = this.totalNumberOfExpressionExperiments;
@@ -64,6 +66,7 @@ export default {
64
66
let promises = [];
65
67
for (let offset = 0; offset < total; offset += limit) {
68
let payload = {
69
+ query: query,
70
filter: compressedFilter,
71
offset: offset,
72
limit: limit,
0 commit comments