Skip to content

Latest commit

 

History

History
15 lines (12 loc) · 412 Bytes

File metadata and controls

15 lines (12 loc) · 412 Bytes

Notes to Future me and Others

  • When calling a subflow in code and running it in background then, instead of using this
var inputs = {};
inputs['first_name'] = producer.first_name ;

  use this   Source

var inputs = {};
inputs['first_name'] = "" + producer.first_name ;