fix
This commit is contained in:
parent
13795ef05e
commit
bcbab80a8e
|
|
@ -233,10 +233,10 @@ export class NoteManager {
|
||||||
interruptedNote.value = result;
|
interruptedNote.value = result;
|
||||||
};
|
};
|
||||||
|
|
||||||
const interruptorUnwatch = () => {
|
const interruptorUnwatch = (() => {
|
||||||
if (this.isDebuggerEnabled) console.log('NoteManager: interruptorUnwatch', id, interruptedNote);
|
if (this.isDebuggerEnabled) console.log('NoteManager: interruptorUnwatch', id, interruptedNote);
|
||||||
return watch(firstNote, executeInterruptor);
|
return watch(firstNote, executeInterruptor);
|
||||||
};
|
})();
|
||||||
|
|
||||||
if (this.isDebuggerEnabled) {
|
if (this.isDebuggerEnabled) {
|
||||||
console.log('NoteManager: get interrupted note (new)', id, { note: firstNote, interruptedNote });
|
console.log('NoteManager: get interrupted note (new)', id, { note: firstNote, interruptedNote });
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue