From 02b8ea40afba82e75df738d707cd247d89937ea7 Mon Sep 17 00:00:00 2001 From: kolaente Date: Thu, 12 Sep 2024 11:29:39 +0200 Subject: [PATCH] fix(multiselect): make selectPlaceholder optional (cherry picked from commit 3b8ccbad4fe66d133bbe0eeddc7e3692b1db548b) --- frontend/src/components/input/Multiselect.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/components/input/Multiselect.vue b/frontend/src/components/input/Multiselect.vue index 2cbc43bd0..8aec33957 100644 --- a/frontend/src/components/input/Multiselect.vue +++ b/frontend/src/components/input/Multiselect.vue @@ -151,7 +151,7 @@ const props = withDefaults(defineProps<{ /** The text shown next to the new value option. */ createPlaceholder?: string /** The text shown next to an option. */ - selectPlaceholder: string + selectPlaceholder?: string /** If true, allows for selecting multiple items. v-model will be an array with all selected values in that case. */ multiple?: boolean /** If true, displays the search results inline instead of using a dropdown. */