From c42dc9ecd220f89d4ec65ba85a2eac487f78f288 Mon Sep 17 00:00:00 2001 From: Benjamin Canac Date: Sun, 17 Jul 2022 13:44:23 +0200 Subject: [PATCH] chore(CommandPalette): set default threshold to undefined --- src/runtime/components/navigation/CommandPalette.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/runtime/components/navigation/CommandPalette.vue b/src/runtime/components/navigation/CommandPalette.vue index f94c645a..dc1f5c0d 100644 --- a/src/runtime/components/navigation/CommandPalette.vue +++ b/src/runtime/components/navigation/CommandPalette.vue @@ -65,7 +65,7 @@ const props = defineProps({ fuseOptions: { keys: ['label'], isCaseSensitive: false, - threshold: 0.1 + threshold: undefined }, resultLimit: 12, matchAllWhenSearchEmpty: true