Only include field value in execute.argValues

This commit is contained in:
Tim Mickel 2016-06-09 14:27:11 -04:00
parent bcd058bdc4
commit a987d9d9cc

View file

@ -26,7 +26,7 @@ var execute = function (sequencer, thread, blockId) {
// Add all fields on this block to the argValues.
var fields = runtime.blocks.getFields(blockId);
for (var fieldName in fields) {
argValues[fieldName] = fields[fieldName];
argValues[fieldName] = fields[fieldName].value;
}
// Recursively evaluate input blocks.