This commit is contained in:
tamaina 2023-08-11 16:08:11 +00:00
parent 9c9546e9cb
commit 4669054af8
1 changed files with 1 additions and 1 deletions

View File

@ -147,7 +147,7 @@ export class NoteManager {
if (this.isDebuggerEnabled) {
console.log('NoteManager: set note (new)', note.id, { src: note, ref: this.notesSource.value.get(note.id) });
watch(this.notesSource.value.get(note.id)!, newVal => {
watch(() => this.notesSource.value.get(note.id)!, newVal => {
console.log('NoteManager: note source updated', newVal.id, newVal);
});
}