Skip to content

Commit

Permalink
lint
Browse files Browse the repository at this point in the history
  • Loading branch information
iantrich authored Oct 20, 2020
1 parent 42bb6ce commit 79297eb
Showing 1 changed file with 3 additions and 5 deletions.
8 changes: 3 additions & 5 deletions src/roku-card.ts
Original file line number Diff line number Diff line change
Expand Up @@ -57,9 +57,7 @@ export class RokuCard extends LitElement {
<ha-card .header="${this._config.name}">
<div class="remote">
<div class="row">
<div class="app">
${stateObj ? stateObj.attributes.app_name : ''}
</div>
<div class="app">${stateObj ? stateObj.attributes.app_name : ''}</div>
${this._config.tv || (this._config.power && this._config.power.show)
? this._renderButton('power', 'mdi:power', 'Power')
: ''}
Expand Down Expand Up @@ -162,8 +160,8 @@ export class RokuCard extends LitElement {
? html`
<ha-icon-button
.app=${this._config.apps[index].app}
icon=${this._config.apps[index].icon!}
title=${this._config.apps[index].app!}
icon=${this._config.apps[index].icon}
title=${this._config.apps[index].app}
.config=${this._config.apps[index]}
@action=${this._handleAction}
.actionHandler=${actionHandler({
Expand Down

0 comments on commit 79297eb

Please sign in to comment.