Skip to content

Commit

Permalink
v1.6.1
Browse files Browse the repository at this point in the history
  • Loading branch information
scottcain committed Dec 20, 2024
1 parent 963ab1d commit e3e4dcd
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
2 changes: 1 addition & 1 deletion lib/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
},
"main": "dist/index.js",
"module": "esm/index.js",
"version": "1.6.0",
"version": "1.6.1",
"keywords": [
"bioinformatics",
"gene page",
Expand Down
1 change: 1 addition & 0 deletions lib/src/components/GenericGeneSeqPanel.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -96,6 +96,7 @@ const GenericGeneSeqPanel = observer(function ({
</option>
))}
</select>
&nbsp;
<Selector model={sequenceFeatureDetails} />
</div>

Expand Down
5 changes: 3 additions & 2 deletions lib/src/components/Selector.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,8 @@ const Selector = observer(function ({
const { intronBp, upDownBp, mode, hasCDS, hasExonOrCDS } = model;

return (
<div>
<span>
Mode:{" "}
<select
value={mode}
onChange={event => {
Expand Down Expand Up @@ -68,7 +69,7 @@ const Selector = observer(function ({
</option>
))}
</select>
</div>
</span>
);
});

Expand Down

0 comments on commit e3e4dcd

Please sign in to comment.