fix(Notion Node): Fix regex for getMany operation (#19419)

This commit is contained in:
yehorkardash
2025-09-15 14:07:21 +00:00
committed by GitHub
parent 1c45d8ba2e
commit 185fc41ca9

View File

@@ -45,7 +45,7 @@ const blockIdRLC: INodeProperties = {
{ {
type: 'regex', type: 'regex',
properties: { properties: {
regex: '[a-f0-9]{2,}', regex: idValidationRegexp,
errorMessage: 'Not a valid Notion Block ID', errorMessage: 'Not a valid Notion Block ID',
}, },
}, },