Skip to content

Commit

Permalink
graph legend no longer shows year 1970 #445
Browse files Browse the repository at this point in the history
  • Loading branch information
io53 committed Sep 18, 2024
1 parent de123df commit fa5aa7a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 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 src/components/Graph.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ const legendHider = ({
u.over.addEventListener("mouseleave", () => {
document.getElementsByClassName("u-legend")[0].style.visibility = 'hidden';
});
u.over.addEventListener("mouseenter", () => {
u.over.addEventListener("mousemove", () => {
document.getElementsByClassName("u-legend")[0].style.visibility = '';
});
}
Expand Down

0 comments on commit fa5aa7a

Please sign in to comment.