1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-14 23:33:31 +00:00

Typescript 5.3: Fix-super-missuse-on-instance-properties (#10952)

Co-authored-by: Daniel James Smith <djsmith85@users.noreply.github.com>
This commit is contained in:
Daniel James Smith
2024-09-09 19:32:13 +02:00
committed by GitHub
parent e786eac87d
commit 1bf29f8285
2 changed files with 2 additions and 2 deletions

View File

@@ -64,7 +64,7 @@ export class SendGroupingsComponent extends BaseSendComponent implements OnInit,
dialogService,
toastService,
);
super.onSuccessfulLoad = async () => {
this.onSuccessfulLoad = async () => {
this.selectAll();
};
}

View File

@@ -66,7 +66,7 @@ export class SendTypeComponent extends BaseSendComponent implements OnInit, OnDe
dialogService,
toastService,
);
super.onSuccessfulLoad = async () => {
this.onSuccessfulLoad = async () => {
this.selectType(this.type);
};
this.applySavedState =