I have a super simple drop list in my angular project:
<ul cdkDropList style="padding: 20px;">
<li cdkDrag>111111</li>
<li cdkDrag>222222</li>
<li cdkDrag>333333</li>
<li cdkDrag>444444</li>
<li cdkDrag>555555</li>
</ul>
However, when I drag 111111
to the end, it jumps back to being first in the list.
- Here's a video demo of the problem.
- Here's a re-creation of my problem on StackBlitz.