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 24993b9 commit 0fd59c6Copy full SHA for 0fd59c6
src/BootstrapBlazor/Components/AutoComplete/AutoComplete.razor.cs
@@ -119,8 +119,6 @@ protected override void OnInitialized()
119
_filterItems = [.. _filterItems.Take(DisplayCount.Value)];
120
}
121
122
-
123
- _clientValue = Value ?? "";
124
125
126
/// <summary>
@@ -134,6 +132,8 @@ protected override void OnParametersSet()
134
132
PlaceHolder ??= Localizer[nameof(PlaceHolder)];
135
133
Icon ??= IconTheme.GetIconByKey(ComponentIcons.AutoCompleteIcon);
136
LoadingIcon ??= IconTheme.GetIconByKey(ComponentIcons.LoadingIcon);
+
+ _clientValue = Value ?? "";
137
138
139
0 commit comments