summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDessalines <happydooby@gmail.com>2019-06-01 15:12:10 -0700
committerDessalines <happydooby@gmail.com>2019-06-01 15:12:10 -0700
commit367f4c2274b403917a583189abc1881ba3f24dcb (patch)
tree932e4029d90ac8c8f1daa6a3ea459b986884208f
parent5161ff42aa7b4b51da4497479d7d242ec6fce2b5 (diff)
Fix site-form cancel button.
- Fixes #164
-rw-r--r--ui/src/components/main.tsx1
1 files changed, 1 insertions, 0 deletions
diff --git a/ui/src/components/main.tsx b/ui/src/components/main.tsx
index ac43b1d9..153c9f72 100644
--- a/ui/src/components/main.tsx
+++ b/ui/src/components/main.tsx
@@ -71,6 +71,7 @@ export class Main extends Component<any, MainState> {
super(props, context);
this.state = this.emptyState;
+ this.handleEditCancel = this.handleEditCancel.bind(this);
this.subscription = WebSocketService.Instance.subject
.pipe(retryWhen(errors => errors.pipe(delay(3000), take(10))))