From e6d0dd5898b34a1361d88526ff539b29cca7c23c Mon Sep 17 00:00:00 2001 From: Benjamin Canac Date: Fri, 17 Feb 2023 19:07:38 +0100 Subject: [PATCH] chore(CommandPalette): set debounce to 200 --- 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 73ded884..cf1bbc91 100644 --- a/src/runtime/components/navigation/CommandPalette.vue +++ b/src/runtime/components/navigation/CommandPalette.vue @@ -144,7 +144,7 @@ const props = defineProps({ }, debounce: { type: Number, - default: 0 + default: 200 } })