Skip to content

Commit

Permalink
Updating tag for table
Browse files Browse the repository at this point in the history
  • Loading branch information
simonwarchol committed Feb 22, 2023
1 parent 07b97e0 commit a0c972d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion minerva_analysis/client/dist/vendor_bundle.js

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions minerva_analysis/client/src/js/views/neighborhoodTable.js
Original file line number Diff line number Diff line change
Expand Up @@ -268,10 +268,10 @@ function

findElementWithTag(e, tag) {
let i = 0;
let elem = e.path[i]
let elem = e.composedPath()[i]
while (elem.tagName !== tag && elem) {
i++;
elem = e.path[i];
elem = e.composedPath()[i];
}
return elem;
}

0 comments on commit a0c972d

Please sign in to comment.