Skip to content

Commit

Permalink
Merge pull request #450 from antolinos/issue_449
Browse files Browse the repository at this point in the history
It fixes issue #449
  • Loading branch information
antolinos authored Aug 1, 2018
2 parents 15b6026 + f445d01 commit 9670001
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -313,7 +313,7 @@ ContainerPrepareSpreadSheet.prototype.loadProcessingDewars = function (sampleCha
var groupedByContainer = _.groupBy(samples,"Container_containerId");
_.forEach(groupedByContainer,function(smpls, containerId){
var type = "Spinepuck";
if (_.maxBy(smpls,"location") > 10) {
if (_.maxBy(smpls,"location").location > 10) {
type = "Unipuck";
}
_.map(processingContainers,function (c) {
Expand Down

0 comments on commit 9670001

Please sign in to comment.