atmosphere explorer
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

make search prefix case insensitive

Juliet 1be276f2 7760c069

+1 -1
+1 -1
src/components/search.tsx
··· 27 27 ]; 28 28 29 29 const parsePrefix = (input: string): { prefix: string | null; query: string } => { 30 - const matchedPrefix = SEARCH_PREFIXES.find((p) => input.startsWith(p.prefix)); 30 + const matchedPrefix = SEARCH_PREFIXES.find((p) => input.toLowerCase().startsWith(p.prefix)); 31 31 if (matchedPrefix) { 32 32 return { 33 33 prefix: matchedPrefix.prefix,