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 33cefa9 commit 53fe46bCopy full SHA for 53fe46b
src/BootstrapBlazor/Components/Dropdown/Dropdown.razor.cs
@@ -242,6 +242,11 @@ protected override void OnParametersSet()
242
243
FixedButtonText ??= SelectedItem?.Text;
244
LoadingIcon ??= IconTheme.GetIconByKey(ComponentIcons.ButtonLoadingIcon);
245
+
246
+ if (_isAsyncLoading == false)
247
+ {
248
+ _buttonIcon = Icon;
249
+ }
250
}
251
252
private IEnumerable<SelectedItem> GetItems() => (IsFixedButtonText && !ShowFixedButtonTextInDropdown)
0 commit comments