Fix invalid directive bindings (#19330)

This commit is contained in:
Steve Repsher 2024-01-09 09:00:59 -05:00 committed by GitHub
parent 3edc77c978
commit 8583c879f2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 1 additions and 2 deletions

View File

@ -74,7 +74,7 @@ class DialogBox extends LitElement {
<ha-textfield
dialogInitialFocus
value=${ifDefined(this._params.defaultValue)}
.placeholder=${ifDefined(this._params.placeholder)}
.placeholder=${this._params.placeholder}
.label=${this._params.inputLabel
? this._params.inputLabel
: ""}

View File

@ -38,7 +38,6 @@
"no-complex-attribute-binding": "warning",
"no-nullable-attribute-binding": "warning",
"no-incompatible-type-binding": "warning",
"no-invalid-directive-binding": "warning",
// LitElement
"no-incompatible-property-type": "warning",
"no-property-visibility-mismatch": "warning",