fix a bug which caused immedate deletion of created attributes

This commit is contained in:
zadam
2023-07-17 22:53:54 +02:00
parent 23278f54cb
commit bc8f531b33
3 changed files with 11 additions and 2 deletions

View File

@@ -116,7 +116,7 @@ function updateNoteAttributes(req) {
const note = becca.getNote(noteId);
let existingAttrs = note.getOwnedAttributes();
let existingAttrs = note.getOwnedAttributes().slice();
let position = 0;