You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Fails with an error that workflow is null in the onComplete handler, even though it should be in scope. The same error will happen for params if it is accessed first. These handlers should work regardless of whether they are defined at the script level or in the entry workflow.
There are two workarounds:
Assign the onComplete handler: workflow.onComplete = { ...
Declare local variables that reference workflow and params:
The following example:
Fails with an error that
workflow
is null in the onComplete handler, even though it should be in scope. The same error will happen forparams
if it is accessed first. These handlers should work regardless of whether they are defined at the script level or in the entry workflow.There are two workarounds:
workflow.onComplete = { ...
workflow
andparams
:The text was updated successfully, but these errors were encountered: