From 15f2997fc986ab39237633ae9748b9e7e0ed02ba Mon Sep 17 00:00:00 2001 From: Matt Leon Date: Thu, 3 Oct 2019 11:35:03 -0500 Subject: [PATCH] Fix fuzzy search in hackertable --- src/client/routes/manage/HackerTable.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/client/routes/manage/HackerTable.tsx b/src/client/routes/manage/HackerTable.tsx index 513f9e964..6d7810a49 100644 --- a/src/client/routes/manage/HackerTable.tsx +++ b/src/client/routes/manage/HackerTable.tsx @@ -114,8 +114,8 @@ const fuseOpts = { distance: 100, findAllMatches: true, location: 0, - shouldSort: false, - threshold: 0.5, + shouldSort: true, + threshold: 0.3, tokenize: true, };