1
0
mirror of https://github.com/laurent22/joplin.git synced 2025-12-02 22:49:09 +02:00

Apply linter

This commit is contained in:
Laurent Cozic
2019-10-14 01:47:21 +02:00
parent a5f17fad58
commit 008e30bdb7
2 changed files with 7 additions and 9 deletions

View File

@@ -166,8 +166,8 @@ class ScreenHeaderComponent extends React.PureComponent {
async duplicateButton_press() {
const noteIds = this.props.selectedNoteIds;
//Duplicate all selected notes. ensureUniqueTitle is set to true to use the
//original note's name as a root for the new unique identifier.
// Duplicate all selected notes. ensureUniqueTitle is set to true to use the
// original note's name as a root for the new unique identifier.
await Note.duplicateMultipleNotes(noteIds, {ensureUniqueTitle: true});
this.props.dispatch({ type: 'NOTE_SELECTION_END' });