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 dbb9b8d commit a22b394Copy full SHA for a22b394
src/BootstrapBlazor/BootstrapBlazor.csproj
@@ -1,7 +1,7 @@
1
<Project Sdk="Microsoft.NET.Sdk.Razor">
2
3
<PropertyGroup>
4
- <Version>9.5.7-beta01</Version>
+ <Version>9.5.7</Version>
5
</PropertyGroup>
6
7
<ItemGroup>
src/BootstrapBlazor/Components/Select/Select.razor.cs
@@ -173,6 +173,7 @@ private SelectedItem? SelectedRow
173
{
174
if (Value is null)
175
176
+ _lastSelectedValueString = "";
177
_init = false;
178
return null;
179
}
@@ -411,6 +412,7 @@ protected override async Task OnClearValue()
411
412
await base.OnClearValue();
413
414
SelectedItem = null;
415
416
417
418
private string? ReadonlyString => IsEditable ? null : "readonly";
0 commit comments