fix: properly handle undefined results
This commit is contained in:
parent
2b2435210b
commit
c4574ff042
@ -58,7 +58,7 @@ class JsonataQuery extends Operation {
|
|||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
return JSON.stringify(result);
|
return JSON.stringify(result === undefined ? "" : result);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user