fix attribute sorting, closes #225

This commit is contained in:
azivner
2018-11-14 17:54:28 +01:00
parent cfce744338
commit b8feb4cce3
2 changed files with 3 additions and 1 deletions

View File

@@ -117,7 +117,7 @@ async function show() {
}
async function loadNotesAndRelations() {
const noteIds = mapData.notes.map(note => note.noteId);console.log(noteIds);
const noteIds = mapData.notes.map(note => note.noteId);
const data = await server.post("notes/relation-map", {noteIds});
relations = [];