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 e308c8d commit e695298Copy full SHA for e695298
src/Masa.Stack.Components/Shared/PureComponents/LabeledRadios/SLabeledRadioGroup.razor
@@ -116,8 +116,11 @@
116
117
if (item != null)
118
{
119
- _selectedKey = item.Instance?.Value;
120
- await SelectedKeyChanged(_selectedKey);
+ var currentKey = item.Instance?.Value;
+ if (currentKey != _selectedKey)
121
+ {
122
+ await SelectedKeyChanged(currentKey);
123
+ }
124
}
125
126
await CallSlider();
0 commit comments