We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 160f305 commit 332605cCopy full SHA for 332605c
1 file changed
browser/search.mjs
@@ -92,7 +92,7 @@ export default function search (state, push) {
92
const [current] = currentToken
93
94
const startsWith = specialTokens.filter(
95
- (x) => x.includes(current) && current !== x
+ (x) => x.toLowerCase().includes(current.toLowerCase()) && current !== x
96
)
97
98
return html`<p class="straw-suggestions">
0 commit comments