mirror of
https://github.com/home-assistant/frontend.git
synced 2025-07-25 18:26:35 +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 {
|
private _addMount(): void {
|
||||||
showMountViewDialog(this, {
|
showMountViewDialog(this, {
|
||||||
reloadMounts: this._reloadMounts,
|
reloadMounts: () => this._reloadMounts(),
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -277,7 +277,7 @@ class HaConfigSectionStorage extends LitElement {
|
|||||||
ev.stopPropagation();
|
ev.stopPropagation();
|
||||||
showMountViewDialog(this, {
|
showMountViewDialog(this, {
|
||||||
mount: (ev.currentTarget as any).mount,
|
mount: (ev.currentTarget as any).mount,
|
||||||
reloadMounts: this._reloadMounts,
|
reloadMounts: () => this._reloadMounts(),
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user