We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bca7f60 commit 3d66ee1Copy full SHA for 3d66ee1
src/services/TeamService.js
@@ -72,8 +72,8 @@ function compileRegexPatternForNoEmsiSkills () {
72
// store skill names and compiled regex paterns
73
_.each(unMatchedSkills, skill => {
74
unMatched.push({
75
- name: skill,
76
- pattern: _compileRegexPatternForSkillName(skill)
+ name: skill.toLowerCase(),
+ pattern: _compileRegexPatternForSkillName(skill.toLowerCase())
77
})
78
79
return unMatched
0 commit comments