Skip to content

Commit

Permalink
Don't show comparison circles when not compared (#3122)
Browse files Browse the repository at this point in the history
  • Loading branch information
djbarnwal authored Sep 23, 2023
1 parent dda69ef commit 3a8f512
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@
}
function showCircleIcon(index) {
if (excludeMode && selectedIndex.length) {
if (isBeingCompared && excludeMode && selectedIndex.length) {
if (selectedIndex.includes(index)) {
return false;
} else {
Expand Down

1 comment on commit 3a8f512

@github-actions
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.