Show what updates are skipped (#12418)

This commit is contained in:
Bram Kragten 2022-04-25 20:37:24 +02:00 committed by GitHub
parent f8a52d250e
commit a743e3bbba
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 13 additions and 1 deletions

View File

@ -160,6 +160,10 @@ class HaConfigSectionUpdates extends LitElement {
flex-direction: column; flex-direction: column;
display: flex; display: flex;
} }
ha-card {
margin-bottom: 24px;
margin-bottom: max(24px, env(safe-area-inset-bottom));
}
`; `;
} }

View File

@ -42,6 +42,7 @@ class HaConfigUpdates extends LitElement {
<paper-icon-item <paper-icon-item
@click=${this._openMoreInfo} @click=${this._openMoreInfo}
.entity_id=${entity.entity_id} .entity_id=${entity.entity_id}
class=${entity.attributes.skipped_version ? "skipped" : ""}
> >
<span slot="item-icon" class="icon"> <span slot="item-icon" class="icon">
<state-badge <state-badge
@ -60,6 +61,9 @@ class HaConfigUpdates extends LitElement {
version_available: entity.attributes.latest_version, version_available: entity.attributes.latest_version,
} }
)} )}
${entity.attributes.skipped_version
? `(${this.hass.localize("ui.panel.config.updates.skipped")})`
: ""}
</div> </div>
</paper-item-body> </paper-item-body>
${!this.narrow ? html`<ha-icon-next></ha-icon-next>` : ""} ${!this.narrow ? html`<ha-icon-next></ha-icon-next>` : ""}
@ -96,6 +100,9 @@ class HaConfigUpdates extends LitElement {
padding: 16px; padding: 16px;
padding-bottom: 0; padding-bottom: 0;
} }
.skipped {
background: var(--secondary-background-color);
}
.icon { .icon {
display: inline-flex; display: inline-flex;
height: 100%; height: 100%;

View File

@ -1136,7 +1136,8 @@
"more_updates": "+{count} updates", "more_updates": "+{count} updates",
"show": "show", "show": "show",
"show_skipped": "Show skipped", "show_skipped": "Show skipped",
"hide_skipped": "Hide skipped" "hide_skipped": "Hide skipped",
"skipped": "Skipped"
}, },
"areas": { "areas": {
"caption": "Areas", "caption": "Areas",