mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-10 06:34:05 -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',
|
||||
value: 'CONSTAIN_TOKEN',
|
||||
value: 'CONTAINS_TOKEN',
|
||||
},
|
||||
{
|
||||
name: `Doesn't Contain Exactly`,
|
||||
value: 'NOT_CONSTAIN_TOKEN',
|
||||
value: 'NOT_CONTAINS_TOKEN',
|
||||
},
|
||||
],
|
||||
default: 'EQ',
|
||||
|
|
Loading…
Reference in a new issue