atmosphere explorer
0
fork

Configure Feed

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

show suggestion with full prefix

Juliet 911b5529 8cbe8b5f

+2 -2
+2 -2
src/components/search.tsx
··· 111 111 const currentInput = input(); 112 112 if (!currentInput) return SEARCH_PREFIXES; 113 113 114 - const { prefix } = parsePrefix(currentInput); 115 - if (prefix) return []; 114 + const { prefix, query } = parsePrefix(currentInput); 115 + if (prefix && query.length > 0) return []; 116 116 117 117 return SEARCH_PREFIXES.filter((p) => p.prefix.startsWith(currentInput.toLowerCase())); 118 118 };