1
0
mirror of https://github.com/laurent22/joplin.git synced 2024-12-24 10:27:10 +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.itemRenderer = (note) => {
let label = note.title + ' ' + note.id;
let label = note.title; //+ ' ' + note.id;
if (note.is_todo) {
label = '[' + (note.todo_completed ? 'X' : ' ') + '] ' + label;
}