1
0
mirror of https://github.com/BoostIo/Boostnote synced 2026-06-24 23:34:03 +00:00

Merge branch 'master' of github.com:BoostIO/Boostnote into add-notification-onChangeUi

This commit is contained in:
Paul Rosset
2017-12-01 17:34:16 +00:00
2 changed files with 7 additions and 5 deletions
+5
View File
@@ -38,6 +38,10 @@ class TagSelect extends React.Component {
}
}
handleNewTagBlur (e) {
this.submitTag()
}
removeLastTag () {
let { value } = this.props
@@ -135,6 +139,7 @@ class TagSelect extends React.Component {
placeholder='Add tag...'
onChange={(e) => this.handleNewTagInputChange(e)}
onKeyDown={(e) => this.handleNewTagInputKeyDown(e)}
onBlur={(e) => this.handleNewTagBlur(e)}
/>
</div>
)