Skip to content

Commit

Permalink
Merge pull request #1664 from mirsch/fix-copy-note-link-from-list
Browse files Browse the repository at this point in the history
fix "copy note link from note list" link format
  • Loading branch information
Rokt33r authored Mar 13, 2018
2 parents 1efc3bb + da9067a commit 41042fe
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion browser/main/NoteList/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -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)
}

Expand Down

0 comments on commit 41042fe

Please sign in to comment.