Skip to content

Commit

Permalink
(minor) client-format
Browse files Browse the repository at this point in the history
  • Loading branch information
dannon committed Sep 21, 2018
1 parent eb37ad3 commit e10180d
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions client/galaxy/scripts/mvc/workflow/workflow-terminals.js
Original file line number Diff line number Diff line change
Expand Up @@ -457,16 +457,18 @@ var InputCollectionTerminal = BaseInputTerminal.extend({
if (output_terminal.attributes.collection_type_source && !connector.dragging) {
if (other.isMappedOver()) {
if (other.isCollection) {
output_terminal.attributes.collection_type = other.terminalMapping.mapOver.append(other.collectionType).collectionType;
output_terminal.attributes.collection_type = other.terminalMapping.mapOver.append(
other.collectionType
).collectionType;
} else {
output_terminal.attributes.collection_type = other.terminalMapping.mapOver.collectionType;
}
} else {
output_terminal.attributes.collection_type = other.attributes.collection_type;
}
output_terminal.update(output_terminal.attributes);
}
})
}
});
}

var effectiveMapOver = this._effectiveMapOver(other);
Expand Down

0 comments on commit e10180d

Please sign in to comment.