1
0
mirror of https://github.com/bitwarden/browser.git synced 2024-09-23 03:22:50 +02: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
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
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 =