diff --git a/public/v1/js/ff/accounts/index.js b/public/v1/js/ff/accounts/index.js index 6b3a18f123..e03353a2de 100644 --- a/public/v1/js/ff/accounts/index.js +++ b/public/v1/js/ff/accounts/index.js @@ -88,7 +88,7 @@ function stopSorting() { //$.post('api/v1/accounts/' + id, {order: newOrder, _token: token}); $.ajax({ url: 'api/v1/accounts/' + id, - data: {order: newOrder}, + data: JSON.stringify({order: newOrder}), type: 'PUT', }); });