Add missing outlined to supervisor panel (#12565)

This commit is contained in:
Joakim Sørensen 2022-05-03 19:06:21 +02:00 committed by GitHub
parent c5de8a4361
commit a9d01c7b55
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
6 changed files with 6 additions and 5 deletions

View File

@ -85,7 +85,7 @@ export class HassioUpdate extends LitElement {
return html``; return html``;
} }
return html` return html`
<ha-card> <ha-card outlined>
<div class="card-content"> <div class="card-content">
<div class="icon"> <div class="icon">
<ha-svg-icon .path=${mdiHomeAssistant}></ha-svg-icon> <ha-svg-icon .path=${mdiHomeAssistant}></ha-svg-icon>

View File

@ -48,7 +48,7 @@ class HassioCoreInfo extends LitElement {
]; ];
return html` return html`
<ha-card header="Core"> <ha-card header="Core" outlined>
<div class="card-content"> <div class="card-content">
<div> <div>
<ha-settings-row> <ha-settings-row>

View File

@ -66,7 +66,7 @@ class HassioHostInfo extends LitElement {
}, },
]; ];
return html` return html`
<ha-card header="Host"> <ha-card header="Host" outlined>
<div class="card-content"> <div class="card-content">
<div> <div>
${this.supervisor.host.features.includes("hostname") ${this.supervisor.host.features.includes("hostname")

View File

@ -57,7 +57,7 @@ class HassioSupervisorInfo extends LitElement {
}, },
]; ];
return html` return html`
<ha-card header="Supervisor"> <ha-card header="Supervisor" outlined>
<div class="card-content"> <div class="card-content">
<div> <div>
<ha-settings-row> <ha-settings-row>

View File

@ -65,7 +65,7 @@ class HassioSupervisorLog extends LitElement {
protected render(): TemplateResult | void { protected render(): TemplateResult | void {
return html` return html`
<ha-card> <ha-card outlined>
${this._error ${this._error
? html`<ha-alert alert-type="error">${this._error}</ha-alert>` ? html`<ha-alert alert-type="error">${this._error}</ha-alert>`
: ""} : ""}

View File

@ -128,6 +128,7 @@ class UpdateAvailableCard extends LitElement {
return html` return html`
<ha-card <ha-card
outlined
.header=${this.supervisor.localize("update_available.update_name", { .header=${this.supervisor.localize("update_available.update_name", {
name: this._name, name: this._name,
})} })}