From 842ece2a8a64d1307b284b237dcf8bb0ea230c97 Mon Sep 17 00:00:00 2001 From: Frank Kanis Date: Sun, 18 Mar 2018 11:14:22 +0100 Subject: [PATCH] Fix Copy Note Link in Context Menu --- 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 b8a915d5..4826814f 100644 --- a/browser/main/NoteList/index.js +++ b/browser/main/NoteList/index.js @@ -671,7 +671,7 @@ class NoteList extends React.Component { } copyNoteLink (note) { - const noteLink = `[${note.title}](${note.key})` + const noteLink = `[${note.title}](:note:${note.key})` return copy(noteLink) }