Fix ha-button with missing label and links (#26332)

This commit is contained in:
Wendelin
2025-07-31 12:40:17 +02:00
committed by GitHub
parent 19c2f9c9e8
commit eba1f401cc
88 changed files with 407 additions and 439 deletions

View File

@@ -58,7 +58,7 @@ class DialogPasteReplace extends LitElement implements HassDialog {
></ha-yaml-editor>
<div slot="primaryAction">
<ha-button @click=${this._handleAppend}>
<ha-button appearance="plain" @click=${this._handleAppend}>
${this.hass.localize("ui.common.append")}
</ha-button>
<ha-button @click=${this._handleReplace}>
@@ -89,6 +89,10 @@ class DialogPasteReplace extends LitElement implements HassDialog {
font-size: inherit;
font-weight: inherit;
}
div[slot="primaryAction"] {
display: flex;
gap: 8px;
}
`,
];
}