becca conversion WIP

This commit is contained in:
zadam
2021-05-02 21:34:57 +02:00
parent c035627f0a
commit 3091119893
17 changed files with 40 additions and 53 deletions

View File

@@ -33,7 +33,7 @@ class Attribute extends AbstractEntity {
if (!(this.noteId in this.becca.notes)) {
// entities can come out of order in sync, create skeleton which will be filled later
this.becca.notes[this.noteId] = new Note(this.becca, {noteId: this.noteId});
this.becca.notes[this.noteId] = new Note({noteId: this.noteId});
}
this.becca.notes[this.noteId].ownedAttributes.push(this);