This commit is contained in:
tamaina 2023-08-11 14:14:57 +00:00
parent 13795ef05e
commit bcbab80a8e
1 changed files with 2 additions and 2 deletions

View File

@ -233,10 +233,10 @@ export class NoteManager {
interruptedNote.value = result;
};
const interruptorUnwatch = () => {
const interruptorUnwatch = (() => {
if (this.isDebuggerEnabled) console.log('NoteManager: interruptorUnwatch', id, interruptedNote);
return watch(firstNote, executeInterruptor);
};
})();
if (this.isDebuggerEnabled) {
console.log('NoteManager: get interrupted note (new)', id, { note: firstNote, interruptedNote });