Skip to content

Commit 941c285

Browse files
committed
Fix method name
1 parent 17d4038 commit 941c285

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/nodes-base/nodes/DataStore/DataStore.node.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,7 @@ export class DataStore implements INodeType {
123123

124124
data = fields;
125125
}
126-
const response = await dataStoreProxy.appendRows([data as never]);
126+
const response = await dataStoreProxy.insertRows([data as never]);
127127
if (response)
128128
returnData.push({
129129
json: data,

0 commit comments

Comments
 (0)