From 597439b53826021e79c0f6f253cbfd0b53083435 Mon Sep 17 00:00:00 2001 From: Benjamin Canac Date: Mon, 18 Jul 2022 19:17:14 +0200 Subject: [PATCH] chore(CommandPalette): put back `nullable` prop --- src/runtime/components/navigation/CommandPalette.vue | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/runtime/components/navigation/CommandPalette.vue b/src/runtime/components/navigation/CommandPalette.vue index c45d56cd..f71e0226 100644 --- a/src/runtime/components/navigation/CommandPalette.vue +++ b/src/runtime/components/navigation/CommandPalette.vue @@ -2,6 +2,7 @@
@@ -52,6 +53,10 @@ const props = defineProps({ type: Boolean, default: false }, + nullable: { + type: Boolean, + default: false + }, groups: { type: Array as PropType, default: () => []