Skip to content

Commit d90fa6c

Browse files
committed
Fix Fuse
1 parent 108677a commit d90fa6c

File tree

2 files changed

+4
-4
lines changed
  • packages/app/src/app

2 files changed

+4
-4
lines changed

packages/app/src/app/components/CreateNewSandbox/CreateSandbox/Create/PersonalTemplates/FilteredTemplates.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,8 @@ export const FilteredTemplates = ({
2525
threshold: 0.3,
2626
distance: 10,
2727
keys: [
28-
{ name: 'sandbox.title', weight: 0.5 },
29-
{ name: 'sandbox.description', weight: 0.5 },
28+
{ name: 'sandbox.title', weight: 0.3 },
29+
{ name: 'sandbox.description', weight: 0.25 },
3030
{ name: 'sandbox.alias', weight: 0.2 },
3131
{ name: 'sandbox.source.template', weight: 0.2 },
3232
{ name: 'sandbox.id', weight: 0.05 },

packages/app/src/app/pages/Dashboard/Content/routes/SearchSandboxes/index.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,8 +30,8 @@ const SearchSandboxes = () => (
3030
threshold: 0.1,
3131
distance: 1000,
3232
keys: [
33-
{ name: 'title', weight: 0.5 },
34-
{ name: 'description', weight: 0.3 },
33+
{ name: 'title', weight: 0.4 },
34+
{ name: 'description', weight: 0.2 },
3535
{ name: 'alias', weight: 0.2 },
3636
{ name: 'source.template', weight: 0.1 },
3737
{ name: 'id', weight: 0.1 },

0 commit comments

Comments
 (0)