Skip to content

Commit

Permalink
remove input selection until rewrite is complete
Browse files Browse the repository at this point in the history
  • Loading branch information
iantrich authored Aug 17, 2019
1 parent da21c89 commit f70a64e
Showing 1 changed file with 0 additions and 25 deletions.
25 changes: 0 additions & 25 deletions roku-card.js
Original file line number Diff line number Diff line change
Expand Up @@ -45,31 +45,6 @@ class RokuCard extends LitElement {
<ha-card .header="${this._config.name}">
<div class="remote">
<div class="row">
${ stateObj.attributes.source_list ?
html`
<paper-dropdown-menu
label="Input Source"
@value-changed="${this.launchApp}"
>
<paper-listbox
slot="dropdown-content"
.selected="${
stateObj.attributes.source_list.indexOf(
stateObj.attributes.source
)
}"
>
${
stateObj.attributes.source_list.map(source => {
return html`
<paper-item>${source}</paper-item>
`;
})
}
</paper-listbox>
</paper-dropdown-menu>`
: ""
}
${
this._config.tv || this._config.power
? html`
Expand Down

0 comments on commit f70a64e

Please sign in to comment.