Skip to content

Commit

Permalink
chore: format code
Browse files Browse the repository at this point in the history
  • Loading branch information
denysdovhan committed Apr 20, 2022
1 parent e82e2fd commit 1ddd68e
Showing 1 changed file with 9 additions and 7 deletions.
16 changes: 9 additions & 7 deletions src/purifier-card.js
Original file line number Diff line number Diff line change
Expand Up @@ -198,13 +198,15 @@ class PurifierCard extends LitElement {
${preset_modes.map(
(item, index) =>
html`<mwc-list-item
?activated=${selected === index}
value=${item}
@click=${(e) => this.handlePresetMode(e)}
>
${localize(`preset_mode.${item}`) || item}
</mwc-list-item>`
html`
<mwc-list-item
?activated=${selected === index}
value=${item}
@click=${(e) => this.handlePresetMode(e)}
>
${localize(`preset_mode.${item}`) || item}
</mwc-list-item>
`
)}
</ha-button-menu>
</div>
Expand Down

0 comments on commit 1ddd68e

Please sign in to comment.