Postlagerkarte / blazor-dragdrop

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

Stop cursor from jumping to end of input field [Firefox] #129

Open A-Kojic opened 2 years ago

A-Kojic commented 2 years ago

When I add an input field to the dropzone and whenever I click on the input field, the cursor jumps to the end.

This happens in Mozilla Firefox (v 93.0) but in Chrome (v 95.0.4638.54) it works fine. Is there a way to fix this?

<Dropzone Items="MyItems">
       <div>
               <input type="text" @bind="context.MyProperty" />
        </div>
</Dropzone>