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 0fd59c6 commit 29c11d2Copy full SHA for 29c11d2
src/BootstrapBlazor/Components/AutoComplete/AutoComplete.razor.cs
@@ -85,7 +85,7 @@ public partial class AutoComplete
85
[NotNull]
86
private RenderTemplate? _dropdown = null;
87
88
- private string _clientValue = "";
+ private string? _clientValue;
89
90
private string? ClassString => CssBuilder.Default("auto-complete")
91
.AddClass("is-clearable", IsClearable)
@@ -133,7 +133,7 @@ protected override void OnParametersSet()
133
Icon ??= IconTheme.GetIconByKey(ComponentIcons.AutoCompleteIcon);
134
LoadingIcon ??= IconTheme.GetIconByKey(ComponentIcons.LoadingIcon);
135
136
- _clientValue = Value ?? "";
+ _clientValue = Value;
137
}
138
139
/// <summary>
0 commit comments