Skip to content

Commit

Permalink
fix bug where FASTA sequences were not rendering correctly
Browse files Browse the repository at this point in the history
  • Loading branch information
hpratt committed Mar 24, 2020
1 parent b3bd8af commit ffc2890
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "logojs-webapp",
"version": "2.1.0",
"version": "2.1.1",
"license": "MIT",
"author": "Henry Pratt",
"homepage": "/app",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -393,6 +393,7 @@ class UploadWorkspace extends React.Component {
let selectedPPMs = this.state.selectedFile && this.state.selectedFile.logos;
const selectedProps = this.state.selected ? { ...this.state.selected } : {};
if (selectedProps && selectedProps.yAxisAuto) selectedProps.yAxisMax = null;
if (selectedProps.fasta) delete selectedProps.fasta;

const defaultMax = this.state.selected && (
this.state.selected.backgroundFrequencies
Expand Down

0 comments on commit ffc2890

Please sign in to comment.