From d144a5884ac06edfb2afe1c56cf01267e46c287f Mon Sep 17 00:00:00 2001 From: David Dreher Date: Wed, 6 Feb 2019 22:11:35 +0100 Subject: [PATCH] fix for issue #2859: Cloning a note will now also copy the properties description, snippets, tags and isStarred --- browser/main/NoteList/index.js | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/browser/main/NoteList/index.js b/browser/main/NoteList/index.js index 33a0adf0..9d62e717 100644 --- a/browser/main/NoteList/index.js +++ b/browser/main/NoteList/index.js @@ -716,7 +716,11 @@ class NoteList extends React.Component { folder: folder.key, title: firstNote.title + ' ' + i18n.__('copy'), content: firstNote.content, - linesHighlighted: firstNote.linesHighlighted + linesHighlighted: firstNote.linesHighlighted, + description: firstNote.description, + snippets: firstNote.snippets, + tags: firstNote.tags, + isStarred: firstNote.isStarred }) .then((note) => { attachmentManagement.cloneAttachments(firstNote, note)