Skip to content

Commit 74545ec

Browse files
committed
resolve review comments 12
1 parent 83d68ca commit 74545ec

2 files changed

Lines changed: 3 additions & 2 deletions

File tree

src/BlazorUI/Bit.BlazorUI/Components/Inputs/ChoiceGroup/BitChoiceGroup.razor.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,8 @@ namespace Bit.BlazorUI;
3030

3131
/// <summary>
3232
/// Determines if the ChoiceGroup is auto focused on first render, focusing its checked item, or its first
33-
/// enabled item when nothing is checked. Nothing is focused when the target item is disabled.
33+
/// enabled item when nothing is checked. Nothing is focused when the ChoiceGroup is read-only or the
34+
/// target item is disabled.
3435
/// </summary>
3536
[Parameter] public bool AutoFocus { get; set; }
3637

src/BlazorUI/Demo/Client/Bit.BlazorUI.Demo.Client.Core/Pages/Components/Inputs/ChoiceGroup/BitChoiceGroupDemo.razor.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ public partial class BitChoiceGroupDemo
1818
Name = "AutoFocus",
1919
Type = "bool",
2020
DefaultValue = "false",
21-
Description = "Determines if the ChoiceGroup is auto focused on first render, focusing its checked item, or its first enabled item when nothing is checked. Nothing is focused when the target item is disabled."
21+
Description = "Determines if the ChoiceGroup is auto focused on first render, focusing its checked item, or its first enabled item when nothing is checked. Nothing is focused when the ChoiceGroup is read-only or the target item is disabled."
2222
},
2323
new()
2424
{

0 commit comments

Comments
 (0)