From 49e48f7cf2da0aa69e582fdf1960e2a1a50c6406 Mon Sep 17 00:00:00 2001 From: tugcekucukoglu Date: Wed, 22 Nov 2023 16:09:26 +0300 Subject: [PATCH] Fixed #4865 - Listbox: metaKeySelection default changed as true --- components/lib/listbox/BaseListbox.vue | 15 ++++++++++++--- 1 file changed, 12 insertions(+), 3 deletions(-) diff --git a/components/lib/listbox/BaseListbox.vue b/components/lib/listbox/BaseListbox.vue index 4cf0f4ffd..0b0155209 100644 --- a/components/lib/listbox/BaseListbox.vue +++ b/components/lib/listbox/BaseListbox.vue @@ -14,10 +14,19 @@ export default { optionGroupLabel: null, optionGroupChildren: null, listStyle: null, - disabled: Boolean, + disabled: { + type: Boolean, + default: false + }, dataKey: null, - multiple: Boolean, - metaKeySelection: Boolean, + multiple: { + type: Boolean, + default: false + }, + metaKeySelection: { + type: Boolean, + default: true + }, filter: Boolean, filterPlaceholder: String, filterLocale: String,