add null-guard

Signed-off-by: Michael Telatynski <7t3chguy@gmail.com>
This commit is contained in:
Michael Telatynski 2018-06-16 08:44:57 +01:00
parent 8971211639
commit 1afdb0e3c0
No known key found for this signature in database
GPG key ID: 3F879DA5AD802A5E

View file

@ -95,7 +95,9 @@ var LeftPanel = React.createClass({
break;
case KeyCode.ENTER:
this._onMoveFocus(false);
this.focusedElement.click();
if (this.focusedElement) {
this.focusedElement.click();
}
handled = true;
break;
}