We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 89078c1 commit 4637c64Copy full SHA for 4637c64
libs/web-flow-executor/src/nodes/iframe-html-node.ts
@@ -427,7 +427,7 @@ export const getIFrameHtmlNode = (updated: () => void): NodeTask<NodeInfo> => {
427
{
428
propertyName: 'input',
429
displayName: 'Last input',
430
- type: 'json',
+ type: 'any',
431
432
getData: () => {
433
try {
@@ -436,8 +436,8 @@ export const getIFrameHtmlNode = (updated: () => void): NodeTask<NodeInfo> => {
436
? JSON.parse(currentInput)
437
: currentInput
438
: { message: 'No input data available' };
439
- } catch (error) {
440
- return { error: 'Parsing current input failed' };
+ } catch (_error) {
+ return currentInput;
441
}
442
},
443
0 commit comments