fix: list widget validation when removing invalid item

This commit is contained in:
Daniel Lautzenheiser
2023-08-31 11:29:29 -04:00
parent fb72cec318
commit 3d02a6b180
6 changed files with 54 additions and 2 deletions

View File

@ -317,6 +317,7 @@ export interface WidgetControlProps<T, F extends BaseField = UnknownField, EV =
label: string;
locale: string | undefined;
onChange: (value: T | null | undefined) => void;
clearChildValidation: () => void;
i18n: I18nSettings | undefined;
hasErrors: boolean;
errors: FieldError[];