Skip to content

Commit

Permalink
bugfix, need string value to represent date, not DateTime object
Browse files Browse the repository at this point in the history
  • Loading branch information
sajp committed Apr 27, 2015
1 parent c281d9f commit 0c2e6cc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/LIMS2/Report/RecoveryOverview.pm
Expand Up @@ -349,7 +349,7 @@ sub _build_crispr_stage_data {
}
elsif(@crispr_well_ids){
# We found crispr wells but no DNA or vector result sets
$crispr_stage_data->{crispr_well_created}->{$gene} = $first_crispr_well_date;
$crispr_stage_data->{crispr_well_created}->{$gene} = $first_crispr_well_date->dmy('/');
my @crispr_wells = $self->model->schema->resultset('Well')->search({
id => { '-in', \@crispr_well_ids }
});
Expand Down

0 comments on commit 0c2e6cc

Please sign in to comment.