mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-18 18:41:14 +00:00
feat(core): Refactor data table update row to use filters (no-changelog) (#19092)
This commit is contained in:
@@ -175,7 +175,10 @@ export const updateDataStoreRowsApi = async (
|
||||
'PATCH',
|
||||
`/projects/${projectId}/data-tables/${dataStoreId}/rows`,
|
||||
{
|
||||
filter: { id: rowId },
|
||||
filter: {
|
||||
type: 'and',
|
||||
filters: [{ columnName: 'id', condition: 'eq', value: rowId }],
|
||||
},
|
||||
data: rowData,
|
||||
},
|
||||
);
|
||||
|
||||
Reference in New Issue
Block a user