call super disconnected callback after custom callback

This commit is contained in:
sua yoo 2022-02-22 15:59:55 -08:00
parent c563216582
commit b5874c3f8c
No known key found for this signature in database
GPG Key ID: 5AD1B4C02D4F0567
3 changed files with 3 additions and 0 deletions

View File

@ -188,6 +188,7 @@ export class AccountSettings extends LiteElement {
disconnectedCallback() {
this.formStateService.stop();
super.disconnectedCallback();
}
render() {

View File

@ -28,6 +28,7 @@ export class CopyButton extends LitElement {
disconnectedCallback() {
window.clearTimeout(this.timeoutId);
super.disconnectedCallback();
}
render() {

View File

@ -146,6 +146,7 @@ export class LogInPage extends LiteElement {
disconnectedCallback() {
this.formStateService.stop();
super.disconnectedCallback();
}
async updated(changedProperties: any) {