Skip to content

Commit

Permalink
Merge pull request #1355 from kbase/sct-380
Browse files Browse the repository at this point in the history
fixed undefined object bug [SCT-380]
  • Loading branch information
briehl committed Jul 5, 2018
2 parents 7c96515 + 1746bb5 commit 1bd7143
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -449,7 +449,9 @@ define([
}
}

d.log2fc_f = d.log2fc_f.toFixed(2);
if (!!d.log2fc_f) {
d.log2fc_f = d.log2fc_f.toFixed(2);
}
});

data.forEach( function(d) {
Expand Down

0 comments on commit 1bd7143

Please sign in to comment.