Skip to content

Commit bb4f443

Browse files
authored
fix ComboBox popover opened by default
1 parent 8576e5c commit bb4f443

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

CodeBeam.MudBlazor.Extensions/Components/ComboBox/MudComboBox.razor

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@
120120

121121
</MudInputExtended>
122122

123-
<MudPopover Open="true" MaxHeight="@MaxHeight" AnchorOrigin="@AnchorOrigin" TransformOrigin="@TransformOrigin" OverflowBehavior="OverflowBehavior.FlipAlways" Class="@PopoverClassname" RelativeWidth="@RelativeWidth">
123+
<MudPopover Open="_isOpen" MaxHeight="@MaxHeight" AnchorOrigin="@AnchorOrigin" TransformOrigin="@TransformOrigin" OverflowBehavior="OverflowBehavior.FlipAlways" Class="@PopoverClassname" RelativeWidth="@RelativeWidth">
124124
<CascadingValue Value="@this" IsFixed="true">
125125
<div id="@_popoverId" style="@($"overflow-y: auto; max-height: {MaxHeight}px")">
126126
@PopoverStartContent

0 commit comments

Comments
 (0)