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

Merge pull request #484 from asmsuechan/fix-delete-shortcut

Fix a shortcut for deletion
This commit is contained in:
Sota Sugiura
2017-04-24 23:14:42 +09:00
committed by GitHub

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