1
0
mirror of https://github.com/BoostIo/Boostnote synced 2025-12-13 17:56:25 +00:00

Fix to enable a shortcut for deleting a note

This commit is contained in:
asmsuechan
2017-04-22 15:33:41 -07:00
parent 6a711d6a71
commit 2222192bcd

View File

@@ -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()
}
}