Skip to content

Commit 368e41b

Browse files
committed
Notion: Fixed bug in Append Block to Parent action
1 parent 179f54b commit 368e41b

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

components/notion/actions/append-block/append-block.mjs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ export default {
66
key: "notion-append-block",
77
name: "Append Block to Parent",
88
description: "Creates and appends blocks to the specified parent. [See the documentation](https://developers.notion.com/reference/patch-block-children)",
9-
version: "0.2.14",
9+
version: "0.2.15",
1010
type: "action",
1111
props: {
1212
notion,
@@ -48,6 +48,7 @@ export default {
4848
},
4949
},
5050
methods: {
51+
...base.methods,
5152
chunkArray(array, chunkSize = 100) {
5253
const chunks = [];
5354
for (let i = 0; i < array.length; i += chunkSize) {

components/notion/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@pipedream/notion",
3-
"version": "0.2.2",
3+
"version": "0.2.3",
44
"description": "Pipedream Notion Components",
55
"main": "notion.app.mjs",
66
"keywords": [

0 commit comments

Comments
 (0)