From 2222192bcd417015899e22dfe740c9493f1a93c2 Mon Sep 17 00:00:00 2001 From: asmsuechan Date: Sat, 22 Apr 2017 15:33:41 -0700 Subject: [PATCH] Fix to enable a shortcut for deleting a note --- browser/main/Detail/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/browser/main/Detail/index.js b/browser/main/Detail/index.js index a1eb249d..674e2efe 100644 --- a/browser/main/Detail/index.js +++ b/browser/main/Detail/index.js @@ -17,7 +17,7 @@ class Detail extends React.Component { this.refs.root != null && this.refs.root.focus() } this.deleteHandler = () => { - this.refs.root != null && this.refs.root.handleDeleteMenuClick() + this.refs.root != null && this.refs.root.handleDeleteButtonClick() } }