Disable attributes for hass, stateObj, selector, and route properties (#19362)

* Disable attribute for hass properties

* Disable attribute for stateObj properties

* Disable attribute for selector properties

* Disable attribute for route properties

* Switch from Object type to no attribute for same properties
This commit is contained in:
Steve Repsher
2024-01-15 09:52:10 -05:00
committed by GitHub
parent 9f26bedf51
commit 70fcea0c2b
132 changed files with 163 additions and 163 deletions

View File

@@ -19,7 +19,7 @@ import "./ha-expansion-panel";
class HaAttributes extends LitElement {
@property({ attribute: false }) public hass!: HomeAssistant;
@property() public stateObj?: HassEntity;
@property({ attribute: false }) public stateObj?: HassEntity;
@property({ attribute: "extra-filters" }) public extraFilters?: string;