Skip to content

Commit

Permalink
Update shield-card.js
Browse files Browse the repository at this point in the history
  • Loading branch information
derailius authored Sep 22, 2022
1 parent 664f399 commit 4411dc3
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions shield-card.js
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ mdiFastForward,
mdiVolumeMute,
mdiVolumeMinus,
mdiVolumePlus,
mdiRecycle,
mdiRestart,
mdiYoutube,
mdiMenu,
mdiRemote,
Expand Down Expand Up @@ -293,19 +293,19 @@ class TVCardServices extends LitElement {
}
${
this._config.recycle ||
this._config.restart ||
this._config.plex ||
this._config.finder
? html`
<div class="row">
${this._config.recycle
${this._config.restart
? html`
<ha-icon-button
.action="${"recycle"}"
.action="${"restart"}"
@click="${this.handleActionClick}"
icon="mdi:recycle"
.path=${mdiRecycle}
title="Recycle"
icon="mdi:restart"
.path=${mdiRestart}
title="Restart"
></ha-icon-button>
`
: emptyButton}
Expand Down Expand Up @@ -438,7 +438,7 @@ class TVCardServices extends LitElement {
"reverse",
"play",
"forward",
"netflix",
"restart",
"prime_video",
"youtube",
"menu",
Expand Down

0 comments on commit 4411dc3

Please sign in to comment.