remove call to run validations

This commit is contained in:
Niels Lyngsø
2024-03-22 10:06:06 +01:00
parent f33c59401a
commit f89cf68f6e

View File

@@ -78,7 +78,6 @@ export class UmbInputNumberRangeElement extends UmbFormControlMixin(UmbLitElemen
private _onMaxInput(e: InputEvent) {
this.maxValue = Number((e.target as HTMLInputElement).value);
this.dispatchEvent(new CustomEvent('change', { bubbles: true, composed: true }));
this._runValidators();
}
render() {