chore: upgrade deps

This commit is contained in:
Mo
2022-03-21 12:13:10 -05:00
parent bd9a6e2ae5
commit cd243f39c6
21 changed files with 214 additions and 271 deletions

View File

@@ -663,7 +663,7 @@ export class NoteView extends PureComponent<Props, State> {
}
performNoteDeletion(note: SNNote) {
this.application.deleteItem(note);
this.application.mutator.deleteItem(note);
}
onPanelResizeFinish = async (
@@ -801,13 +801,13 @@ export class NoteView extends PureComponent<Props, State> {
};
async disassociateComponentWithCurrentNote(component: SNComponent) {
return this.application.runTransactionalMutation(
return this.application.mutator.runTransactionalMutation(
transactionForDisassociateComponentWithCurrentNote(component, this.note)
);
}
async associateComponentWithCurrentNote(component: SNComponent) {
return this.application.runTransactionalMutation(
return this.application.mutator.runTransactionalMutation(
transactionForAssociateComponentWithCurrentNote(component, this.note)
);
}