1
0
mirror of https://github.com/laurent22/joplin.git synced 2025-07-13 00:10:37 +02:00

Remove note ID

This commit is contained in:
Laurent Cozic
2017-10-12 22:59:38 +01:00
parent 916d75fd21
commit 0fac2f4457

View File

@ -10,7 +10,7 @@ class NoteListWidget extends ListWidget {
this.updateIndexFromSelectedNoteId_ = false; this.updateIndexFromSelectedNoteId_ = false;
this.itemRenderer = (note) => { this.itemRenderer = (note) => {
let label = note.title + ' ' + note.id; let label = note.title; //+ ' ' + note.id;
if (note.is_todo) { if (note.is_todo) {
label = '[' + (note.todo_completed ? 'X' : ' ') + '] ' + label; label = '[' + (note.todo_completed ? 'X' : ' ') + '] ' + label;
} }