Skip to content

Commit

Permalink
chore(Divider): API version info was set on the wrong prop (#1996)
Browse files Browse the repository at this point in the history
  • Loading branch information
capdiem authored Jun 27, 2024
1 parent 010eb95 commit c983877
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/Masa.Blazor/Components/Divider/MDivider.razor.cs
Original file line number Diff line number Diff line change
Expand Up @@ -18,13 +18,13 @@ public partial class MDivider : MasaComponentBase

[Parameter] public bool Right { get; set; }

[Parameter] public int Length { get; set; }
[Parameter]
[MasaApiParameter(ReleasedOn = "v1.6.0")]
public int Length { get; set; }

[Parameter] public bool Dark { get; set; }

[Parameter]
[MasaApiParameter(ReleasedOn = "v1.6.0")]
public bool Light { get; set; }
[Parameter] public bool Light { get; set; }

[CascadingParameter(Name = "IsDark")] public bool CascadingIsDark { get; set; }

Expand Down

0 comments on commit c983877

Please sign in to comment.