Skip to content

Commit fa16a62

Browse files
authored
♻ refactor(Radio): make IsDisabled and IsReadonly props protected (#610)
1 parent 534a888 commit fa16a62

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/Component/BlazorComponent/Components/Radio/BRadio.razor.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -83,9 +83,9 @@ protected bool IsDark
8383
}
8484
}
8585

86-
private bool IsDisabled => Disabled || RadioGroup?.IsDisabled is true;
86+
protected bool IsDisabled => Disabled || RadioGroup?.IsDisabled is true;
8787

88-
private bool IsReadonly => Readonly || RadioGroup?.IsReadonly is true;
88+
protected bool IsReadonly => Readonly || RadioGroup?.IsReadonly is true;
8989

9090
private async Task HandleClick(MouseEventArgs args)
9191
{

0 commit comments

Comments
 (0)