🐛 Fix bug filtering date and datetime fields on Salesforce node (#2565)
This commit is contained in:
@@ -191,7 +191,9 @@ export function getQuery(options: IDataObject, sobject: string, returnAll: boole
|
||||
}
|
||||
|
||||
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}'`;
|
||||
} else {
|
||||
return value;
|
||||
|
||||
Reference in New Issue
Block a user