Skip to content

Commit 09a61a0

Browse files
committed
issue 3474 fix
1 parent f54faea commit 09a61a0

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

src/actions/lookup.js

+1
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ function getSkillTagsDone() {
2222
const params = {
2323
domain: 'SKILLS',
2424
status: 'APPROVED',
25+
limit: 1000,
2526
};
2627
return getService().getTags(params);
2728
}

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=${qs.stringify(params)}`);
2929
return getApiResponsePayload(res);
3030
}
3131

0 commit comments

Comments
 (0)