Fix Lovelace view config icon preview (#5770)

This commit is contained in:
Mat Strange 2020-05-06 11:30:41 +01:00 committed by GitHub
parent df002d7a67
commit 3216a46e76
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -11,6 +11,7 @@ import {
import { fireEvent } from "../../../../common/dom/fire_event"; import { fireEvent } from "../../../../common/dom/fire_event";
import { slugify } from "../../../../common/string/slugify"; import { slugify } from "../../../../common/string/slugify";
import "../../../../components/ha-switch"; import "../../../../components/ha-switch";
import "../../../../components/ha-icon-input";
import { LovelaceViewConfig } from "../../../../data/lovelace"; import { LovelaceViewConfig } from "../../../../data/lovelace";
import { HomeAssistant } from "../../../../types"; import { HomeAssistant } from "../../../../types";
import "../../components/hui-theme-select-editor"; import "../../components/hui-theme-select-editor";
@ -93,16 +94,17 @@ export class HuiViewEditor extends LitElement {
@value-changed=${this._valueChanged} @value-changed=${this._valueChanged}
@blur=${this._handleTitleBlur} @blur=${this._handleTitleBlur}
></paper-input> ></paper-input>
<paper-input <ha-icon-input
.label="${this.hass.localize( .label="${this.hass.localize(
"ui.panel.lovelace.editor.card.generic.icon" "ui.panel.lovelace.editor.card.generic.icon"
)} (${this.hass.localize( )} (${this.hass.localize(
"ui.panel.lovelace.editor.card.config.optional" "ui.panel.lovelace.editor.card.config.optional"
)})" )})"
.value=${this._icon} .value=${this._icon}
.placeholder=${this._icon}
.configValue=${"icon"} .configValue=${"icon"}
@value-changed=${this._valueChanged} @value-changed=${this._valueChanged}
></paper-input> ></ha-icon-input>
<paper-input <paper-input
.label="${this.hass.localize( .label="${this.hass.localize(
"ui.panel.lovelace.editor.card.generic.url" "ui.panel.lovelace.editor.card.generic.url"