mirror of
https://github.com/zadam/trilium.git
synced 2025-11-07 22:05:44 +01:00
renamed db columns to camelCase
This commit is contained in:
@@ -18,10 +18,10 @@ const eventLog = (function() {
|
||||
listEl.html('');
|
||||
|
||||
for (const event of result) {
|
||||
const dateTime = formatDateTime(parseDate(event.date_added));
|
||||
const dateTime = formatDateTime(parseDate(event.dateAdded));
|
||||
|
||||
if (event.note_id) {
|
||||
const noteLink = link.createNoteLink(event.note_id).prop('outerHTML');
|
||||
if (event.noteId) {
|
||||
const noteLink = link.createNoteLink(event.noteId).prop('outerHTML');
|
||||
|
||||
event.comment = event.comment.replace('<note>', noteLink);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user