Skip to content

Commit

Permalink
Fix #3034 by disabling checkboxes (#3035)
Browse files Browse the repository at this point in the history
  • Loading branch information
vnbaaij authored Dec 10, 2024
1 parent acc842f commit 1f11e19
Showing 1 changed file with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -24,13 +24,13 @@
</FluentStack>
<FluentStack Orientation="@Orientation.Vertical">
<h2>Selected</h2>
<FluentCheckbox @bind-Value=DaisySelected>
<FluentCheckbox @bind-Value=DaisySelected Disabled="true">
<span aria-label="Daisy selected">Daisy selected</span>
</FluentCheckbox>
<FluentCheckbox @bind-Value=SunflowerSelected>
<FluentCheckbox @bind-Value=SunflowerSelected Disabled="true">
<span aria-label="Sunflower selected">Sunflower selected</span>
</FluentCheckbox>
<FluentCheckbox @bind-Value=RoseSelected>
<FluentCheckbox @bind-Value=RoseSelected Disabled="true">
<span aria-label="Rose selected">Rose selected</span>
</FluentCheckbox>
</FluentStack>
Expand All @@ -42,6 +42,6 @@
bool PlanesExpanded = true;

bool DaisySelected = false;
bool SunflowerSelected = true;
bool SunflowerSelected = false;
bool RoseSelected = false;
}
}

0 comments on commit 1f11e19

Please sign in to comment.