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

Merge pull request #1664 from mirsch/fix-copy-note-link-from-list

fix "copy note link from note list" link format
This commit is contained in:
Junyoung Choi (Sai)
2018-03-13 23:02:44 +09:00
committed by GitHub

View File

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