Skip to content

Commit

Permalink
Merge pull request #8 from c3g/chore/manhattan-wording
Browse files Browse the repository at this point in the history
Manhattan plot help text + dependency updates
  • Loading branch information
davidlougheed authored Jun 19, 2023
2 parents 5e111c2 + 6bae1e0 commit 4052f6e
Show file tree
Hide file tree
Showing 5 changed files with 118 additions and 99 deletions.
64 changes: 32 additions & 32 deletions client/package-lock.json

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

4 changes: 2 additions & 2 deletions client/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"private": true,
"dependencies": {
"@redux-devtools/extension": "^3.2.5",
"axios": "^1.3.6",
"axios": "^1.4.0",
"bootstrap": "^4.6.2",
"bootstrap-icons": "^1.10.5",
"classname": "0.0.0",
Expand All @@ -17,7 +17,7 @@
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-redux": "^8.0.5",
"react-router-dom": "^6.10.0",
"react-router-dom": "^6.11.2",
"react-table": "^7.8.0",
"reactstrap": "^8.10.1",
"redux": "^4.2.1",
Expand Down
5 changes: 4 additions & 1 deletion client/src/components/ManhattanPlot.js
Original file line number Diff line number Diff line change
Expand Up @@ -251,7 +251,10 @@ const ManhattanPlot = React.memo(
minHeight: height + 27 + 16, // plot height + title height (27 in Firefox) + top padding
}} {...props}>
<UplotReact options={uPlotOptions} data={finalData} />
<em style={{color: "#888"}}>Click and drag to zoom in on a region. Double-click to reset.</em>
<em style={{color: "#888"}}>
Click on a point to see more information about a particular peak.
Click and drag to zoom in on a region. Double-click to reset.
</em>
</div>;
});

Expand Down
Loading

0 comments on commit 4052f6e

Please sign in to comment.