Postlagerkarte / blazor-dragdrop

Easy-to-use Drag and Drop Library for Blazor
MIT License
403 stars 96 forks source link

Remove ShouldRender logic #159

Open MarvinKlein1508 opened 1 year ago

MarvinKlein1508 commented 1 year ago

This fixes #158.

As your component is using EventCallbacks there is no need to subscribe to an event to manually tell the UI to refresh itself. Blazor will handle this completely automatically.

The removal of the event lets us also remove the need of IDisposable.

Every example is working fine and all tests have passed.