Fix refresh button appending logs instead of clearing them (#26875)

This commit is contained in:
Phil White
2025-09-08 08:18:05 +01:00
committed by GitHub
parent 52061d6c1a
commit 720f435987

View File

@@ -243,7 +243,7 @@ class ErrorLogCard extends LitElement {
${!streaming || this._error
? html`<ha-icon-button
.path=${mdiRefresh}
@click=${this._loadLogs}
@click=${this._handleRefresh}
.label=${localize("ui.common.refresh")}
></ha-icon-button>`
: nothing}
@@ -715,6 +715,10 @@ class ErrorLogCard extends LitElement {
this._wrapLines = !this._wrapLines;
}
private _handleRefresh() {
this._loadLogs();
}
private _handleOverflowAction(ev: CustomEvent<ActionDetail>) {
let index = ev.detail.index;
if (this.provider === "core") {