Skip to content

Commit

Permalink
fixup
Browse files Browse the repository at this point in the history
  • Loading branch information
theosanderson committed Dec 12, 2024
1 parent 8c0ee73 commit 008c99b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gensplore-component/src/components/GensploreView.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -347,7 +347,7 @@ if (hit1 === -1) {
};

const copySelectedSequence = (asReverseComplement = false) => {
if (!whereMouseWentDown || !whereMouseWentUp) return;
if (whereMouseWentDown===null || whereMouseWentUp===null) return;

const selStart = Math.min(whereMouseWentDown, whereMouseWentUp);
const selEnd = Math.max(whereMouseWentDown, whereMouseWentUp);
Expand Down

0 comments on commit 008c99b

Please sign in to comment.