From 0fac2f4457d5cd9d4f65bfef8ba7be2bbef021bb Mon Sep 17 00:00:00 2001 From: Laurent Cozic Date: Thu, 12 Oct 2017 22:59:38 +0100 Subject: [PATCH] Remove note ID --- CliClient/app/gui/NoteListWidget.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CliClient/app/gui/NoteListWidget.js b/CliClient/app/gui/NoteListWidget.js index f103e1656..22995489e 100644 --- a/CliClient/app/gui/NoteListWidget.js +++ b/CliClient/app/gui/NoteListWidget.js @@ -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; }