diff --git a/src/components/input/bl-input.ts b/src/components/input/bl-input.ts index 6b92ff74..670c6131 100644 --- a/src/components/input/bl-input.ts +++ b/src/components/input/bl-input.ts @@ -281,7 +281,7 @@ export default class BlInput extends FormControlMixin(LitElement) { } protected async updated(changedProperties: PropertyValues) { - if (changedProperties.has("value")) { + if (changedProperties.size > 0) { this.setValue(this.value); await this.validationComplete;