We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f54faea commit 09a61a0Copy full SHA for 09a61a0
src/actions/lookup.js
@@ -22,6 +22,7 @@ function getSkillTagsDone() {
22
const params = {
23
domain: 'SKILLS',
24
status: 'APPROVED',
25
+ limit: 1000,
26
};
27
return getService().getTags(params);
28
}
src/services/lookup.js
@@ -25,7 +25,7 @@ class LookupService {
* @return {Promise} Resolves to the tags.
*/
async getTags(params) {
- const res = await this.private.api.get(`/tags/?${qs.stringify(params)}`);
+ const res = await this.private.api.get(`/tags/?filter=${qs.stringify(params)}`);
29
return getApiResponsePayload(res);
30
31
0 commit comments