From da9067a67292c23ec50a179a0a57dc73612b48b5 Mon Sep 17 00:00:00 2001 From: mirsch Date: Mon, 12 Mar 2018 15:23:37 +0100 Subject: [PATCH] fix "copy note link from note list" introduced in #1583 to reflect changes from #1636 --- browser/main/NoteList/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/browser/main/NoteList/index.js b/browser/main/NoteList/index.js index e12b5c75..21265763 100644 --- a/browser/main/NoteList/index.js +++ b/browser/main/NoteList/index.js @@ -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) }