1
0
mirror of https://github.com/lensapp/lens.git synced 2025-05-20 05:10:56 +00:00

Fix error due to async validators for <Input>

Signed-off-by: Sebastian Malton <sebastian@malton.name>
This commit is contained in:
Sebastian Malton 2021-09-16 09:26:16 -04:00
parent 1ebb8eedf7
commit 789f721247

View File

@ -91,7 +91,7 @@ const defaultProps: Partial<InputProps> = {
export class Input extends React.Component<InputProps, State> { export class Input extends React.Component<InputProps, State> {
static defaultProps = defaultProps as object; static defaultProps = defaultProps as object;
public input: InputElement; public input: InputElement | null = null;
public validators: InputValidator[] = []; public validators: InputValidator[] = [];
public state: State = { public state: State = {
@ -191,7 +191,7 @@ export class Input extends React.Component<InputProps, State> {
} }
} }
this.input.setCustomValidity(errors.length ? errors[0].toString() : ""); this.input?.setCustomValidity(errors.length ? errors[0].toString() : "");
} }
setValidation(errors: React.ReactNode[]) { setValidation(errors: React.ReactNode[]) {