Skip to content

Commit

Permalink
🐛 fix(ProgressCircle): more than one parameter matching the name 'cla…
Browse files Browse the repository at this point in the history
…ss' (#1700)
  • Loading branch information
capdiem authored Dec 29, 2023
1 parent fc3165c commit b64132e
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -6,14 +6,10 @@ public partial class ProgressCircular : PopupComponentBase

[Parameter] public double BackgroundOpacity { get; set; } = 0.46;

[Parameter] public string? Class { get; set; }

[Parameter] public string? Color { get; set; }

[Parameter] public string? ScrimClass { get; set; }

[Parameter] public string? Style { get; set; }

[Parameter] public int ZIndex { get; set; } = 1000;

[Parameter] public int Size { get; set; } = 72;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,6 @@ public partial class ProgressLinear : PopupComponentBase

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

[Parameter] public string? Class { get; set; }

[Parameter] public string? Color { get; set; }

[Parameter] public int Height { get; set; } = 4;
Expand All @@ -18,8 +16,6 @@ public partial class ProgressLinear : PopupComponentBase

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

[Parameter] public string? Style { get; set; }

[Parameter] public int ZIndex { get; set; } = 1000;

private string ComputedStyle => $"z-index: {ZIndex};{Style}";
Expand Down

0 comments on commit b64132e

Please sign in to comment.