mirror of
https://github.com/n8n-io/n8n.git
synced 2024-12-25 04:34:06 -08:00
fix(Hubspot Node): Fix search operators (#3208)
This commit is contained in:
parent
c7d525a60f
commit
ea4a8b88c9
|
@ -999,11 +999,11 @@ export const contactFields: INodeProperties[] = [
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: 'Contains Exactly',
|
name: 'Contains Exactly',
|
||||||
value: 'CONSTAIN_TOKEN',
|
value: 'CONTAINS_TOKEN',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: `Doesn't Contain Exactly`,
|
name: `Doesn't Contain Exactly`,
|
||||||
value: 'NOT_CONSTAIN_TOKEN',
|
value: 'NOT_CONTAINS_TOKEN',
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
default: 'EQ',
|
default: 'EQ',
|
||||||
|
|
Loading…
Reference in a new issue