We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5dd08b2 commit 5ac38d9Copy full SHA for 5ac38d9
src/BootstrapBlazor/Components/Select/MultiSelect.razor.cs
@@ -16,7 +16,8 @@ public partial class MultiSelect<TValue>
16
{
17
private List<SelectedItem> SelectedItems { get; } = [];
18
19
- private static string? ClassString => CssBuilder.Default("select dropdown multi-select")
+ private string? ClassString => CssBuilder.Default("select dropdown multi-select")
20
+ .AddClass("cls", IsClearable)
21
.Build();
22
23
private string? EditSubmitKeyString => EditSubmitKey == EditSubmitKey.Space ? EditSubmitKey.ToDescriptionString() : null;
0 commit comments