mirror of
https://github.com/home-assistant/frontend.git
synced 2025-12-24 12:49:19 +00:00
fix function calls
This commit is contained in:
committed by
Bram Kragten
parent
70532ac3bf
commit
3579d82e8e
@@ -855,7 +855,7 @@ export class HaAutomationEditor extends PreventUnsavedMixin(
|
||||
}
|
||||
|
||||
protected async promptDiscardChanges() {
|
||||
return this.confirmUnsavedChanged();
|
||||
return this._confirmUnsavedChanged();
|
||||
}
|
||||
|
||||
static get styles(): CSSResultGroup {
|
||||
|
||||
@@ -1231,7 +1231,7 @@ export class HaSceneEditor extends PreventUnsavedMixin(
|
||||
}
|
||||
|
||||
protected async promptDiscardChanges() {
|
||||
return this.confirmUnsavedChanged();
|
||||
return this._confirmUnsavedChanged();
|
||||
}
|
||||
|
||||
static get styles(): CSSResultGroup {
|
||||
|
||||
@@ -821,7 +821,7 @@ export class HaScriptEditor extends PreventUnsavedMixin(
|
||||
}
|
||||
|
||||
protected async promptDiscardChanges() {
|
||||
return this.confirmUnsavedChanged();
|
||||
return this._confirmUnsavedChanged();
|
||||
}
|
||||
|
||||
static get styles(): CSSResultGroup {
|
||||
|
||||
Reference in New Issue
Block a user