Fix exception when tabbing to the subject field in the composer

This commit is contained in:
Ben Gotow 2018-01-29 11:31:10 -08:00
parent 4af7fe88d5
commit 8ae17eae12

View file

@ -53,7 +53,7 @@ class TabGroupRegion extends React.Component {
_shouldSelectEnd = node => {
return (
node.nodeName === 'INPUT' && node.type === 'text' && !node.classList.includes('no-select-end')
node.nodeName === 'INPUT' && node.type === 'text' && !node.classList.contains('no-select-end')
);
};