Fix property visibility mismatches (1 of 2) (#19376)

This commit is contained in:
Steve Repsher
2024-01-15 09:40:03 -05:00
committed by GitHub
parent 7209ed055a
commit b801441201
16 changed files with 45 additions and 50 deletions

View File

@@ -15,13 +15,13 @@ import { EntityConfig } from "../entity-rows/types";
@customElement("hui-entity-editor")
export class HuiEntityEditor extends LitElement {
@property({ attribute: false }) protected hass?: HomeAssistant;
@property({ attribute: false }) public hass?: HomeAssistant;
@property({ attribute: false }) protected entities?: EntityConfig[];
@property({ attribute: false }) public entities?: EntityConfig[];
@property() protected entityFilter?: HaEntityPickerEntityFilterFunc;
@property() public entityFilter?: HaEntityPickerEntityFilterFunc;
@property() protected label?: string;
@property() public label?: string;
private _entityKeys = new WeakMap<EntityConfig, string>();