vue.draggable.next icon indicating copy to clipboard operation
vue.draggable.next copied to clipboard

Incorrect item order

Open spixy opened this issue 3 years ago • 0 comments

Step by step scenario

  • set :list = [ first, second, third ]
  • start dragging second
  • set :list = [ second, first, third ] (visually with no effect)
  • put second back into previous place (list[1])

Actual Solution

HTML elements are in order ([ first, second, third ])

Expected Solution

HTML elements are in order [ second, first, third ]

spixy avatar Jul 26 '22 08:07 spixy