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

fix "copy note link from note list" introduced in #1583 to reflect changes from #1636

This commit is contained in:
mirsch
2018-03-12 15:23:37 +01:00
parent f53c182cfb
commit da9067a672

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