We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents be3618f + fbd5baf commit f4bfd99Copy full SHA for f4bfd99
src/composables/courses/all/useCourseAll.js
@@ -140,7 +140,8 @@ export default () => {
140
} else {
141
return matchSearchKeys((key) => {
142
return (
143
- course.name.includes(key) || new String(course.code).includes(key)
+ course.name.toLowerCase().includes(key.toLowerCase()) ||
144
+ new String(course.code).toLowerCase().includes(key.toLowerCase())
145
);
146
});
147
}
0 commit comments