mirror of
https://github.com/n8n-io/n8n.git
synced 2024-12-24 20:24:05 -08:00
🐛 Fix bug filtering date and datetime fields on Salesforce node (#2565)
This commit is contained in:
parent
7efb73053d
commit
6066b6670e
|
@ -191,7 +191,9 @@ export function getQuery(options: IDataObject, sobject: string, returnAll: boole
|
||||||
}
|
}
|
||||||
|
|
||||||
export function getValue(value: any) { // tslint:disable-line:no-any
|
export function getValue(value: any) { // tslint:disable-line:no-any
|
||||||
if (typeof value === 'string') {
|
if (moment(value).isValid()) {
|
||||||
|
return value;
|
||||||
|
} else if (typeof value === 'string') {
|
||||||
return `'${value}'`;
|
return `'${value}'`;
|
||||||
} else {
|
} else {
|
||||||
return value;
|
return value;
|
||||||
|
|
Loading…
Reference in a new issue