Skip to content

Commit

Permalink
Fix for search competency request
Browse files Browse the repository at this point in the history
  • Loading branch information
karthik-tarento committed Jun 10, 2022
1 parent ed4071c commit 20f1470
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,7 @@ private Map<String, CompetencyInfo> updateCompetencyDetails(String authUserToken

for (String compName : competencyMap.keySet()) {
Map<String, Object> compSearchObj = new HashMap<>();
compSearchObj.put(Constants.TYPE, Constants.COMPETENCY);
compSearchObj.put(Constants.TYPE, Constants.COMPETENCY.toUpperCase());
compSearchObj.put(Constants.FIELD, Constants.NAME);
compSearchObj.put(Constants.KEYWORD, compName);
searchList.add(compSearchObj);
Expand Down

0 comments on commit 20f1470

Please sign in to comment.