Update hui-card-options.ts (#3591)

This commit is contained in:
Bram Kragten 2019-09-03 19:26:26 +02:00 committed by Paulus Schoutsen
parent 15564a1b26
commit 7bc947ffb0

View File

@ -66,15 +66,16 @@ export class HuiCardOptions extends LitElement {
<paper-icon-button <paper-icon-button
icon="hass:dots-vertical" icon="hass:dots-vertical"
slot="dropdown-trigger" slot="dropdown-trigger"
aria-label="More options"
></paper-icon-button> ></paper-icon-button>
<paper-listbox slot="dropdown-content"> <paper-listbox slot="dropdown-content">
<paper-item @click="${this._moveCard}" <paper-item @click="${this._moveCard}">
>${this.hass!.localize( ${this.hass!.localize(
"ui.panel.lovelace.editor.edit_card.move" "ui.panel.lovelace.editor.edit_card.move"
)}</paper-item )}</paper-item
> >
<paper-item @click="${this._deleteCard}" <paper-item @click="${this._deleteCard}">
>${this.hass!.localize( ${this.hass!.localize(
"ui.panel.lovelace.editor.edit_card.delete" "ui.panel.lovelace.editor.edit_card.delete"
)}</paper-item )}</paper-item
> >