mirror of
https://github.com/home-assistant/frontend.git
synced 2025-12-22 19:58:59 +00:00
Replace all private properties with internalProperty decorator (#6386)
This commit is contained in:
@@ -6,6 +6,7 @@ import {
|
||||
html,
|
||||
LitElement,
|
||||
property,
|
||||
internalProperty,
|
||||
PropertyValues,
|
||||
TemplateResult,
|
||||
} from "lit-element";
|
||||
@@ -30,13 +31,13 @@ import "./integration-badge";
|
||||
|
||||
@customElement("onboarding-integrations")
|
||||
class OnboardingIntegrations extends LitElement {
|
||||
@property() public hass!: HomeAssistant;
|
||||
@property({ attribute: false }) public hass!: HomeAssistant;
|
||||
|
||||
@property() public onboardingLocalize!: LocalizeFunc;
|
||||
|
||||
@property() private _entries?: ConfigEntry[];
|
||||
@internalProperty() private _entries?: ConfigEntry[];
|
||||
|
||||
@property() private _discovered?: DataEntryFlowProgress[];
|
||||
@internalProperty() private _discovered?: DataEntryFlowProgress[];
|
||||
|
||||
private _unsubEvents?: () => void;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user