Skip to content

Commit

Permalink
Fix parameter name in Alignment sample BitStack (#9521)
Browse files Browse the repository at this point in the history
  • Loading branch information
Cyrus-Sushiant committed Dec 22, 2024
1 parent cf3eda1 commit 89e0690
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -73,8 +73,8 @@
<ComponentExampleBox Title="Alignment" RazorCode="@example4RazorCode" CsharpCode="@example4CsharpCode" Id="example4">
<ExamplePreview>
<BitStack Horizontal Wrap Gap="2rem">
<BitToggle @bind-Value="isHorizontal" DefaultText="Horizontal" />
<BitToggle @bind-Value="isReversed" DefaultText="Reversed" />
<BitToggle @bind-Value="isHorizontal" Text="Horizontal" />
<BitToggle @bind-Value="isReversed" Text="Reversed" />
</BitStack>
<br />
<BitChoiceGroup Label="Direction"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -281,8 +281,8 @@ public partial class BitStackDemo
</style>
<BitStack Horizontal Wrap Gap=""2rem"">
<BitToggle @bind-Value=""isHorizontal"" DefaultText=""Horizontal"" />
<BitToggle @bind-Value=""isReversed"" DefaultText=""Reversed"" />
<BitToggle @bind-Value=""isHorizontal"" Text=""Horizontal"" />
<BitToggle @bind-Value=""isReversed"" Text=""Reversed"" />
</BitStack>
<BitChoiceGroup Label=""Direction""
Expand Down

0 comments on commit 89e0690

Please sign in to comment.