mirror of
https://github.com/zadam/trilium.git
synced 2025-12-22 16:20:08 +01:00
make sure entity IDs are generated only with alphanumeric characters (base62)
This commit is contained in:
@@ -1,6 +1,7 @@
|
||||
"use strict";
|
||||
|
||||
const messaging = (function() {
|
||||
const changesToPushCountEl = $("#changes-to-push-count");
|
||||
let ws = null;
|
||||
|
||||
function logError(message) {
|
||||
@@ -39,7 +40,6 @@ const messaging = (function() {
|
||||
recentNotes.reload();
|
||||
}
|
||||
|
||||
const changesToPushCountEl = $("#changesToPushCount");
|
||||
changesToPushCountEl.html(message.changesToPushCount);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -502,7 +502,7 @@ const noteTree = (function() {
|
||||
startNotePath = document.location.hash.substr(1); // strip initial #
|
||||
}
|
||||
|
||||
return prepareNoteTree(resp.notes, resp.notes_parent);
|
||||
return prepareNoteTree(resp.notes);
|
||||
});
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user