Skip to content
This repository has been archived by the owner on Oct 20, 2022. It is now read-only.

Commit

Permalink
fix(Tr): Add pointer-events: none to the clone
Browse files Browse the repository at this point in the history
  • Loading branch information
Andreas Broström authored and bstream committed Jun 1, 2017
1 parent befa6ca commit 9d1006e
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/components/tr/tr.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -112,6 +112,7 @@ class Tr extends React.Component {
clone.classList.remove('sticky');
clone.classList.add('clone');
clone.setAttribute('aria-hidden', true);
clone.style.pointerEvents = 'none';

this.tr.parentNode.insertBefore(clone, this.tr.nextSibling);
}
Expand Down

0 comments on commit 9d1006e

Please sign in to comment.