fix function calls

This commit is contained in:
Jan-Philipp Benecke 2024-12-06 12:58:29 +01:00 committed by Bram Kragten
parent 70532ac3bf
commit 3579d82e8e
3 changed files with 3 additions and 3 deletions

View File

@ -855,7 +855,7 @@ export class HaAutomationEditor extends PreventUnsavedMixin(
} }
protected async promptDiscardChanges() { protected async promptDiscardChanges() {
return this.confirmUnsavedChanged(); return this._confirmUnsavedChanged();
} }
static get styles(): CSSResultGroup { static get styles(): CSSResultGroup {

View File

@ -1231,7 +1231,7 @@ export class HaSceneEditor extends PreventUnsavedMixin(
} }
protected async promptDiscardChanges() { protected async promptDiscardChanges() {
return this.confirmUnsavedChanged(); return this._confirmUnsavedChanged();
} }
static get styles(): CSSResultGroup { static get styles(): CSSResultGroup {

View File

@ -821,7 +821,7 @@ export class HaScriptEditor extends PreventUnsavedMixin(
} }
protected async promptDiscardChanges() { protected async promptDiscardChanges() {
return this.confirmUnsavedChanged(); return this._confirmUnsavedChanged();
} }
static get styles(): CSSResultGroup { static get styles(): CSSResultGroup {