Skip to content

Commit

Permalink
⚰ refactor(Drop): remove duplicate parameters
Browse files Browse the repository at this point in the history
  • Loading branch information
capdiem committed Jun 24, 2024
1 parent 8ad0262 commit fd28c94
Showing 1 changed file with 0 additions and 9 deletions.
9 changes: 0 additions & 9 deletions src/Masa.Blazor/Components/Drawflow/Drop/MDrop.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,6 @@

public class MDrop : MasaComponentBase
{
[Parameter] public string? Class { get; set; }

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

[Parameter] public RenderFragment? ChildContent { get; set; }

[Parameter] public EventCallback<ExDragEventArgs> OnDrop { get; set; }
Expand All @@ -28,9 +24,4 @@ protected override void BuildRenderTree(RenderTreeBuilder builder)
builder.AddElementReferenceCapture(8, e => ElementReference = e);
builder.CloseComponent();
}

private async Task HandleOnDragOver()
{
// ignored
}
}

0 comments on commit fd28c94

Please sign in to comment.