Skip to content

Commit

Permalink
Fix lowercase search of sparks
Browse files Browse the repository at this point in the history
  • Loading branch information
derwebcoder committed Oct 16, 2024
1 parent cc536dc commit b153f33
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/common/components/TextInput/TextInput.config.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ export const getExtensions = (parentWindow: Window) => [
},
suggestion: {
items: async ({ query }) => {
const tags = await tagService.find(query, 5);
const tags = await tagService.find(query.toLowerCase(), 5);

if (query.length <= 0) {
return tags;
Expand Down

0 comments on commit b153f33

Please sign in to comment.