mirror of
https://github.com/zadam/trilium.git
synced 2025-11-07 22:05:44 +01:00
event log now shows full path of notes and works with encryption
This commit is contained in:
@@ -20,7 +20,7 @@ async function showEventLog() {
|
||||
if (event.note_id) {
|
||||
const noteLink = $("<a>", {
|
||||
href: 'app#' + event.note_id,
|
||||
text: event.note_title
|
||||
text: getFullName(event.note_id)
|
||||
}).prop('outerHTML');
|
||||
|
||||
console.log(noteLink);
|
||||
@@ -30,7 +30,6 @@ async function showEventLog() {
|
||||
|
||||
const eventEl = $('<li>').html(dateTime + " - " + event.comment);
|
||||
|
||||
|
||||
eventLogList.append(eventEl);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user