From 61d6e13c7851e77c65e651393acbde08602aca11 Mon Sep 17 00:00:00 2001 From: Cassie Tarakajian Date: Fri, 5 Apr 2019 17:14:00 -0400 Subject: [PATCH] fixes #1018 (#1019) --- client/components/Nav.jsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/components/Nav.jsx b/client/components/Nav.jsx index da72db58..987ba11d 100644 --- a/client/components/Nav.jsx +++ b/client/components/Nav.jsx @@ -40,7 +40,7 @@ class Nav extends React.PureComponent { this.handleRun = this.handleRun.bind(this); this.handleFindPrevious = this.handleFindPrevious.bind(this); this.handleStop = this.handleStop.bind(this); - this.handleStartAccessible = this.handleStartAccessible.apply(this); + this.handleStartAccessible = this.handleStartAccessible.bind(this); this.handleStopAccessible = this.handleStopAccessible.bind(this); this.handleKeyboardShortcuts = this.handleKeyboardShortcuts.bind(this); this.handleLogout = this.handleLogout.bind(this);