From f73f77ca03f61c7bc3b6899d173e96ea200cf529 Mon Sep 17 00:00:00 2001 From: Lukas Date: Fri, 17 May 2024 11:27:33 +0200 Subject: [PATCH] fix: show threshold (#452) --- ui/src/components/Search.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ui/src/components/Search.tsx b/ui/src/components/Search.tsx index 3fa955bd..06f41c18 100644 --- a/ui/src/components/Search.tsx +++ b/ui/src/components/Search.tsx @@ -11,7 +11,7 @@ import { SearchResult } from './SearchResult'; const fuseOptions = { includeScore: true, keys: ['searchPath', 'value', 'library', 'key'], - threshold: 0.2, + // threshold: 0.6, // ignoreLocation: false, useExtendedSearch: true, };