1 new commit in galaxy-central: https://bitbucket.org/galaxy/galaxy-central/commits/1861cbcc610d/ Changeset: 1861cbcc610d User: jmchilton Date: 2014-07-10 00:39:00 Summary: Fix bug related to undefined attribute error in workflow editor. Affected #: 1 file diff -r 5e74f91d068bedde58cf4ec9d8299bd05fdff697 -r 1861cbcc610da6e519c7760e1c829ec3b66887f4 static/scripts/galaxy.workflow_editor.canvas.js --- a/static/scripts/galaxy.workflow_editor.canvas.js +++ b/static/scripts/galaxy.workflow_editor.canvas.js @@ -306,7 +306,7 @@ inputFilled = false; } else { var firstOutput = this.connectors[ 0 ].handle1; - if( firstOutput === null ){ + if( ! firstOutput ){ inputFilled = false; } else { if( firstOutput.isDataCollectionInput || firstOutput.isMappedOver() || firstOutput.datatypes.indexOf( "input_collection" ) > 0 ) { Repository URL: https://bitbucket.org/galaxy/galaxy-central/ -- This is a commit notification from bitbucket.org. You are receiving this because you have the service enabled, addressing the recipient of this email.