Skip to content

Commit 0d52605

Browse files
authored
Merge pull request topcoder-platform#424 from yoution/issue-370
fix: issue topcoder-platform#370
2 parents 07082f4 + 3d66ee1 commit 0d52605

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/services/TeamService.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -72,8 +72,8 @@ function compileRegexPatternForNoEmsiSkills () {
7272
// store skill names and compiled regex paterns
7373
_.each(unMatchedSkills, skill => {
7474
unMatched.push({
75-
name: skill,
76-
pattern: _compileRegexPatternForSkillName(skill)
75+
name: skill.toLowerCase(),
76+
pattern: _compileRegexPatternForSkillName(skill.toLowerCase())
7777
})
7878
})
7979
return unMatched

0 commit comments

Comments
 (0)