mirror of
https://github.com/home-assistant/frontend.git
synced 2026-04-07 03:14:00 +00:00
Fix reload mounts callback when doing changes in dialog (#16615)
This commit is contained in:
@@ -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(),
|
||||
});
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user