Skip to content

Commit

Permalink
Update search to match new encoded database (#104)
Browse files Browse the repository at this point in the history
* Update search to match new encoded database

* lint
  • Loading branch information
GoogolGenius authored Jan 28, 2024
1 parent ccf88f7 commit 25e805f
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -261,7 +261,10 @@ export const filterCourses = (): void => {
const courseIDtoCourse = (courseID: string): CourseType =>
courseData[courseIDtoNameMap.get(courseID) ?? ''] ?? '';

const key = search?.value.toLowerCase().replaceAll(' ', '-');
// Used to convert normal text to the encoded database keys in the firebase db
const key = encodeURIComponent(
search?.value.toLowerCase().replaceAll(' ', '-')
).replace(/\./g, '%2E');
const renderedElements = renderedItems
.filter((name) => name.search(key) !== -1)
.map((name) => {
Expand Down

0 comments on commit 25e805f

Please sign in to comment.