Skip to content

Commit 5f2cfb6

Browse files
committed
#91 including room name in searchable terms
1 parent e13504e commit 5f2cfb6

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

mobile/src/models/VoxxrinTalk.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -113,6 +113,7 @@ export function filterTalksMatching(talks: VoxxrinTalk[], searchTerms: string|un
113113
const talkSearchableContent = `
114114
${talk.title}
115115
${talk.speakers.map(sp => `${sp.fullName} ${sp.companyName}`).join("\n")}
116+
${talk.room.title}
116117
`.toLowerCase()
117118

118119
return searchTerms.split(" ").every(searchTerm => talkSearchableContent.includes(searchTerm.toLowerCase()));

0 commit comments

Comments
 (0)