Skip to content

Commit

Permalink
Fix multiselect default value
Browse files Browse the repository at this point in the history
  • Loading branch information
gumbarros committed Dec 6, 2024
1 parent 01dcd0d commit 900b4b7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Core/UI/Components/Controls/ComboBox/JJComboBox.cs
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ public class JJComboBox(
/// <summary>
/// If the filter is MULTVALUES_EQUALS, enable multiselect.
/// </summary>
public bool MultiSelect { get; set; } = true;
public bool MultiSelect { get; set; } = false;

public FormElementDataItem DataItem { get; set; } = new();

Expand Down

0 comments on commit 900b4b7

Please sign in to comment.