becca conversion WIP

This commit is contained in:
zadam
2021-05-02 11:23:58 +02:00
parent d13c8771ca
commit 1af10d48a2
29 changed files with 91 additions and 92 deletions

View File

@@ -41,7 +41,7 @@ class Attribute extends Entity {
* @returns {Note|null}
*/
getNote() {
return this.repository.getNote(this.noteId);
return this.becca.getNote(this.noteId);
}
/**
@@ -56,7 +56,7 @@ class Attribute extends Entity {
return null;
}
return this.repository.getNote(this.value);
return this.becca.getNote(this.value);
}
/**