mirror of
https://github.com/home-assistant/frontend.git
synced 2025-07-24 09:46:36 +00:00
Fix reload mounts callback when doing changes in dialog (#16615)
This commit is contained in:
parent
c1748138a8
commit
85acafe8a8
@ -269,7 +269,7 @@ class HaConfigSectionStorage extends LitElement {
|
||||
|
||||
private _addMount(): void {
|
||||
showMountViewDialog(this, {
|
||||
reloadMounts: this._reloadMounts,
|
||||
reloadMounts: () => this._reloadMounts(),
|
||||
});
|
||||
}
|
||||
|
||||
@ -277,7 +277,7 @@ class HaConfigSectionStorage extends LitElement {
|
||||
ev.stopPropagation();
|
||||
showMountViewDialog(this, {
|
||||
mount: (ev.currentTarget as any).mount,
|
||||
reloadMounts: this._reloadMounts,
|
||||
reloadMounts: () => this._reloadMounts(),
|
||||
});
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user