Skip to content

Commit

Permalink
fix "copy note link from note list" introduced in #1583 to reflect ch…
Browse files Browse the repository at this point in the history
…anges from #1636
  • Loading branch information
mirsch committed Mar 12, 2018
1 parent f53c182 commit da9067a
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 da9067a

Please sign in to comment.