Skip to content

Commit

Permalink
Merge branch 'develop' into scroll-to-selection
Browse files Browse the repository at this point in the history
  • Loading branch information
guzmanvig committed Jan 16, 2024
2 parents 6700c6f + 258eaab commit ae29dff
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "seqviz",
"description": "A viewer for DNA, RNA, and protein sequences that supports many input formats",
"version": "3.10.1",
"version": "3.10.4",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"unpkg": "dist/seqviz.min.js",
Expand Down
2 changes: 1 addition & 1 deletion src/SeqViewerContainer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ class SeqViewerContainer extends React.Component<SeqViewerContainerProps, SeqVie
this.state = {
centralIndex: {
circular: 0,
linear: props?.selection?.start || 0,
linear: 0,
setCentralIndex: this.setCentralIndex,
},
selection: this.getSelection(defaultSelection, props.selection),
Expand Down

0 comments on commit ae29dff

Please sign in to comment.