Postlagerkarte / blazor-dragdrop

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

Issue with structs in no direct drag target condition #151

Open mmaderic opened 1 year ago

mmaderic commented 1 year ago

Comparing here to null can work only if the TItem is class. If we have structs, for example, KeyValuePair<T1, T2> as a TItem constraint, this condition will fail. Using default equality comparer here solves the problem, but another issue would be if the default value exists.

For example, if the values in the list are:

having 0 as the target here would reject the drop.

Therefore I am opening this PR to discuss on the proper solution for this case.