From 900b4b7aab97f5d61b2591419a3ec4d81cddd8f8 Mon Sep 17 00:00:00 2001 From: gumbarros Date: Fri, 6 Dec 2024 17:57:52 -0300 Subject: [PATCH] Fix multiselect default value --- src/Core/UI/Components/Controls/ComboBox/JJComboBox.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Core/UI/Components/Controls/ComboBox/JJComboBox.cs b/src/Core/UI/Components/Controls/ComboBox/JJComboBox.cs index 0229b8c66..39510a503 100644 --- a/src/Core/UI/Components/Controls/ComboBox/JJComboBox.cs +++ b/src/Core/UI/Components/Controls/ComboBox/JJComboBox.cs @@ -32,7 +32,7 @@ public class JJComboBox( /// /// If the filter is MULTVALUES_EQUALS, enable multiselect. /// - public bool MultiSelect { get; set; } = true; + public bool MultiSelect { get; set; } = false; public FormElementDataItem DataItem { get; set; } = new();