Skip to content

Commit 8828aa8

Browse files
authored
fix(SelectObject): should hidden append icon when hover (dotnetcore#6755)
1 parent a8dd255 commit 8828aa8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/BootstrapBlazor/Components/Select/SelectObject.razor.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ public partial class SelectObject<TItem>
7979
/// </summary>
8080
private string? ClassName => CssBuilder.Default("select select-object dropdown")
8181
.AddClass("disabled", IsDisabled)
82-
.AddClass("cls", IsClearable)
82+
.AddClass("is-clearable", IsClearable)
8383
.AddClassFromAttributes(AdditionalAttributes)
8484
.Build();
8585

0 commit comments

Comments
 (0)