1
0
mirror of https://github.com/BoostIo/Boostnote synced 2025-12-13 09:46:22 +00:00

Fix linking to other notes

This commit is contained in:
Rob Weber
2017-12-23 01:33:03 -08:00
parent 16d264ebfa
commit 4f7026969f

View File

@@ -235,18 +235,8 @@ class NoteList extends React.Component {
return return
} }
const { router } = this.context const selectedNoteKeys = [noteHash]
const { location } = this.props this.focusNote(selectedNoteKeys, noteHash)
let targetIndex = this.getTargetIndex()
if (targetIndex < 0) targetIndex = 0
const selectedNoteKeys = []
const nextNoteKey = this.getNoteKeyFromTargetIndex(targetIndex)
selectedNoteKeys.push(nextNoteKey)
this.focusNote(selectedNoteKeys, nextNoteKey)
ee.emit('list:moved') ee.emit('list:moved')
} }