mirror of
https://github.com/home-assistant/frontend.git
synced 2025-07-25 18:26:35 +00:00
Fix invalid directive bindings (#19330)
This commit is contained in:
parent
3edc77c978
commit
8583c879f2
@ -74,7 +74,7 @@ class DialogBox extends LitElement {
|
|||||||
<ha-textfield
|
<ha-textfield
|
||||||
dialogInitialFocus
|
dialogInitialFocus
|
||||||
value=${ifDefined(this._params.defaultValue)}
|
value=${ifDefined(this._params.defaultValue)}
|
||||||
.placeholder=${ifDefined(this._params.placeholder)}
|
.placeholder=${this._params.placeholder}
|
||||||
.label=${this._params.inputLabel
|
.label=${this._params.inputLabel
|
||||||
? this._params.inputLabel
|
? this._params.inputLabel
|
||||||
: ""}
|
: ""}
|
||||||
|
@ -38,7 +38,6 @@
|
|||||||
"no-complex-attribute-binding": "warning",
|
"no-complex-attribute-binding": "warning",
|
||||||
"no-nullable-attribute-binding": "warning",
|
"no-nullable-attribute-binding": "warning",
|
||||||
"no-incompatible-type-binding": "warning",
|
"no-incompatible-type-binding": "warning",
|
||||||
"no-invalid-directive-binding": "warning",
|
|
||||||
// LitElement
|
// LitElement
|
||||||
"no-incompatible-property-type": "warning",
|
"no-incompatible-property-type": "warning",
|
||||||
"no-property-visibility-mismatch": "warning",
|
"no-property-visibility-mismatch": "warning",
|
||||||
|
Loading…
x
Reference in New Issue
Block a user