🔧 Fix hui-theme-select-editor definition typo (#2899)

This commit is contained in:
Ian Richardson 2019-03-09 18:23:26 -06:00 committed by GitHub
parent ee948302ed
commit 7fe4084073
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -23,8 +23,8 @@ declare global {
} }
} }
@customElement("hui-theme-selection-editor") @customElement("hui-theme-select-editor")
export class HuiThemeSelectionEditor extends LitElement { export class HuiThemeSelectEditor extends LitElement {
@property() public value?: string; @property() public value?: string;
@property() public hass?: HomeAssistant; @property() public hass?: HomeAssistant;
@ -74,6 +74,6 @@ export class HuiThemeSelectionEditor extends LitElement {
declare global { declare global {
interface HTMLElementTagNameMap { interface HTMLElementTagNameMap {
"hui-theme-select-editor": HuiThemeSelectionEditor; "hui-theme-select-editor": HuiThemeSelectEditor;
} }
} }