Fix boolean attributes (#23189)

This commit is contained in:
Paul Bottein
2024-12-06 18:39:34 +01:00
committed by GitHub
parent ea5bf17780
commit 6934f0626c
157 changed files with 275 additions and 234 deletions

View File

@@ -32,7 +32,8 @@ export class HuiGenericEntityRow extends LitElement {
// => static determination will not work => the caller has to pass the desired value in.
// Same applies for custom components that want to override the default behavior.
// Default behavior is controlled by DOMAINS_INPUT_ROW.
@property({ attribute: false, type: Boolean }) public catchInteraction?;
@property({ attribute: "catch-interaction", type: Boolean })
public catchInteraction?;
protected render() {
if (!this.hass || !this.config) {