fix(Hubspot Node): Fix search operators (#3208)

This commit is contained in:
vcrwr 2022-05-02 11:59:05 +02:00 committed by GitHub
parent c7d525a60f
commit ea4a8b88c9
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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',