mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-17 18:12:04 +00:00
feat(Notion Node): Allow to ignore Notion URL properties if empty (#3564)
* Allows to ignore Notion URL properties if empty * Fixes linting * Fixes another linting error that was not caught locally * Reorders options alphabetically
This commit is contained in:
@@ -319,6 +319,19 @@ export const databasePageFields = [
|
||||
default: '',
|
||||
description: 'Email address',
|
||||
},
|
||||
{
|
||||
displayName: 'Ignore If Empty',
|
||||
name: 'ignoreIfEmpty',
|
||||
type: 'boolean',
|
||||
displayOptions: {
|
||||
show: {
|
||||
type: [
|
||||
'url',
|
||||
],
|
||||
},
|
||||
},
|
||||
default: false,
|
||||
},
|
||||
{
|
||||
displayName: 'URL',
|
||||
name: 'urlValue',
|
||||
@@ -732,6 +745,19 @@ export const databasePageFields = [
|
||||
},
|
||||
default: '',
|
||||
},
|
||||
{
|
||||
displayName: 'Ignore If Empty',
|
||||
name: 'ignoreIfEmpty',
|
||||
type: 'boolean',
|
||||
displayOptions: {
|
||||
show: {
|
||||
type: [
|
||||
'url',
|
||||
],
|
||||
},
|
||||
},
|
||||
default: false,
|
||||
},
|
||||
{
|
||||
displayName: 'URL',
|
||||
name: 'urlValue',
|
||||
|
||||
Reference in New Issue
Block a user