From ebe2592793ada41a8194aa0e8f76a21b54b0d63f Mon Sep 17 00:00:00 2001 From: naved Date: Tue, 1 Aug 2023 10:59:19 +0530 Subject: [PATCH] Fixes incorrect prop types --- components/lib/dropdown/BaseDropdown.vue | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/components/lib/dropdown/BaseDropdown.vue b/components/lib/dropdown/BaseDropdown.vue index bf768b8ea..ceecc6cc1 100644 --- a/components/lib/dropdown/BaseDropdown.vue +++ b/components/lib/dropdown/BaseDropdown.vue @@ -153,11 +153,11 @@ export default { props: { modelValue: null, options: Array, - optionLabel: String || Function, - optionValue: String || Function, - optionDisabled: String || Function, - optionGroupLabel: String || Function, - optionGroupChildren: String || Function, + optionLabel: [String, Function], + optionValue: [String, Function], + optionDisabled: [String, Function], + optionGroupLabel: [String, Function], + optionGroupChildren: [String, Function], scrollHeight: { type: String, default: '200px'