Skip to content

Commit

Permalink
fix: accept both lowercase and uppercase hashes
Browse files Browse the repository at this point in the history
  • Loading branch information
mike76-dev authored and alexfreska committed Oct 13, 2023
1 parent d01fad0 commit ccf0bdc
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
5 changes: 5 additions & 0 deletions .changeset/eight-files-jump.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
'explorer': minor
---

The siascan search feature is now case insenstive.
2 changes: 1 addition & 1 deletion apps/explorer/components/Layout/Search.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ export function Search() {
async (values) => {
const response = await search.get({
params: {
query: values.query,
query: values.query.toLowerCase(),
},
})

Expand Down

0 comments on commit ccf0bdc

Please sign in to comment.