Skip to content

Commit 4b96064

Browse files
authored
Update lookup.js
1 parent 4d952f8 commit 4b96064

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/services/lookup.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ class LookupService {
2525
* @return {Promise} Resolves to the tags.
2626
*/
2727
async getTags(params) {
28-
const res = await this.private.api.get(`/tags/?${qs.stringify(params)}`);
28+
const res = await this.private.api.get(`/tags/?filter=${encodeURIComponent(qs.stringify(params.filter))}&${qs.stringify(params.limit)}`);
2929
return getApiResponsePayload(res);
3030
}
3131

0 commit comments

Comments
 (0)