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.
2 parents d3324b5 + 6cb363d commit aa5db2fCopy full SHA for aa5db2f
apps/web/src/features/instruments/components/InstrumentShowcase/InstrumentShowcase.tsx
@@ -36,7 +36,10 @@ export const InstrumentShowcase: React.FC<{
36
} else if (selectedTags.length && !selectedTags.some(({ key }) => tags.includes(key))) {
37
return false;
38
}
39
- return details.title.toUpperCase().includes(searchTerm.toUpperCase());
+ return (
40
+ details.title.toUpperCase().includes(searchTerm.toUpperCase()) ||
41
+ tags.join(', ').toUpperCase().includes(searchTerm.toUpperCase())
42
+ );
43
});
44
updatedFilteredInstruments.sort((a, b) => {
45
return a.details.title.localeCompare(b.details.title);
0 commit comments