react-interactable
react-interactable copied to clipboard
fix: user-select restore
Hi! Thank you for this library. When user-select is set to none, it doesn't get restored. The problem is here:
document.body.userSelect = this.userSelectCache || '';
which should be:
document.body.style.userSelect = this.userSelectCache || '';