From 61ee43aa6fdb7bdb95dc275f10a606053ec7212d Mon Sep 17 00:00:00 2001 From: bymyself Date: Fri, 6 Sep 2024 23:34:47 -0700 Subject: [PATCH] [skip ci] Fix search box props type (#753) --- src/components/searchbox/NodeSearchBox.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/searchbox/NodeSearchBox.vue b/src/components/searchbox/NodeSearchBox.vue index 138e73c17..0a42baf66 100644 --- a/src/components/searchbox/NodeSearchBox.vue +++ b/src/components/searchbox/NodeSearchBox.vue @@ -119,7 +119,7 @@ const showIdName = computed(() => const props = withDefaults( defineProps<{ filters: FilterAndValue[] - searchLimit: number + searchLimit?: number }>(), { searchLimit: 64