Skip to content

Commit

Permalink
Fallback to Passthrough to avoid exception
Browse files Browse the repository at this point in the history
  • Loading branch information
CharlieKolb committed Dec 27, 2024
1 parent b4c77f2 commit c651f87
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ function parseJsonExample(context: IWorkflowNodeContext): JSONSchema7 {
}

export function getFieldEntries(context: IWorkflowNodeContext): FieldValueOption[] {
const inputSource = context.getNodeParameter(INPUT_SOURCE, 0);
const inputSource = context.getNodeParameter(INPUT_SOURCE, 0, PASSTHROUGH);
let result: FieldValueOption[] | string = 'Internal Error: Invalid input source';
try {
if (inputSource === WORKFLOW_INPUTS) {
Expand Down

0 comments on commit c651f87

Please sign in to comment.