diff --git a/frontend/src/Editor/QueryManager/QueryEditors/TooljetDatabase/operations.js b/frontend/src/Editor/QueryManager/QueryEditors/TooljetDatabase/operations.js index e59e2accf5..1acecf40c7 100644 --- a/frontend/src/Editor/QueryManager/QueryEditors/TooljetDatabase/operations.js +++ b/frontend/src/Editor/QueryManager/QueryEditors/TooljetDatabase/operations.js @@ -92,7 +92,7 @@ async function updateRows(queryOptions, organizationId, currentState) { !isEmpty(whereQuery) && query.push(whereQuery); - return await tooljetDatabaseService.updateRows(organizationId, tableName, body, query.join('&')); + return await tooljetDatabaseService.updateRows(organizationId, tableName, body, query.join('&') + '&order=id'); } async function deleteRows(queryOptions, organizationId, currentState) {