ts ignorer for updated

This commit is contained in:
Niels Lyngsø
2024-04-17 15:51:23 +02:00
parent 05c07889a3
commit fdf039aff6

View File

@@ -334,7 +334,8 @@ export const UmbFormControlMixin = <
}
updated(changedProperties: Map<string | number | symbol, unknown>) {
super.updated(changedProperties);
// @ts-expect-error We don't know if we are extending a lit-element:
super.updated?.(changedProperties);
this._runValidators();
}