lotrekagency / mapo

🥭 Our Nuxt module to simplify the making of administration panels, and authenticated web applications.
MIT License
10 stars 3 forks source link

Fix sortable in online mode data table #21

Closed edoaxyz closed 2 years ago

edoaxyz commented 2 years ago

SortableJS doesn't automatically update order inside items array, and because mapo links indexes with ids using the same items array it got initially from the first request (even if the ListTable has been reordered multiple times) at the end you get a discrepancy from what you save in your DB and what you actually see in ListTable. This fix simply reorders items in any case, even if offlineMode is disabled.

bnznamco commented 2 years ago

nice catch! thank you :)