Improve ha cloud info buttons (#25079)

This commit is contained in:
Wendelin 2025-04-16 17:42:51 +02:00 committed by GitHub
parent 93c5632ee0
commit 38c11e738e
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -92,13 +92,6 @@ export class CloudDiscover extends LitElement {
${isComponentLoaded(this.hass, "cloud") ${isComponentLoaded(this.hass, "cloud")
? html` ? html`
<div class="card-actions"> <div class="card-actions">
<a href="/config/cloud/register">
<ha-button unelevated>
${this.hass.localize(
"ui.panel.config.voice_assistants.assistants.cloud.try_one_month"
)}
</ha-button>
</a>
<a href="/config/cloud/login"> <a href="/config/cloud/login">
<ha-button> <ha-button>
${this.hass.localize( ${this.hass.localize(
@ -106,6 +99,13 @@ export class CloudDiscover extends LitElement {
)} )}
</ha-button> </ha-button>
</a> </a>
<a href="/config/cloud/register">
<ha-button unelevated>
${this.hass.localize(
"ui.panel.config.voice_assistants.assistants.cloud.try_one_month"
)}
</ha-button>
</a>
</div> </div>
` `
: nothing} : nothing}