Input doesn't get preprocessor output in the flow
I've added a Preprocessor step that maps the trigger event to the other data structure. Let's say, preprocessor returns this object:
{ account: "Account Name", amount: "5" }
When I test the preprocessor, it works as expected.
I've added the arguments to the Input step:
account: string
amount: string
But when I trigger the flow with sending the email, for some reason Input step gets not the Preprocessor step output, but the Trigger event. I check that in the Runs -> Graph -> Node status.
The Preprocessor step has "The execution of this node has no information attached to it. The job likely did not run yet" in the status.
The setup is really basic, and I can't get what I have done wrong.
