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

Merge pull request #1696 from frankkanis/master

Fix Copy Note Link in Context Menu
This commit is contained in:
Junyoung Choi (Sai)
2018-03-19 22:58:38 +09:00
committed by GitHub

View File

@@ -671,7 +671,7 @@ class NoteList extends React.Component {
} }
copyNoteLink (note) { copyNoteLink (note) {
const noteLink = `[${note.title}](${note.key})` const noteLink = `[${note.title}](:note:${note.key})`
return copy(noteLink) return copy(noteLink)
} }