Skip to content
This repository was archived by the owner on Mar 6, 2025. It is now read-only.

Commit 7bb3594

Browse files
author
Xiaozhou Li
committed
Linting fix for InputFieldWrapper
1 parent 695f000 commit 7bb3594

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/components/input_fields/input_field_wrapper.tsx

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,9 @@ export class InputFieldWrapper extends React.Component<InputFieldWrapperProps, {
8282
}
8383

8484
private _showValidationError(): boolean {
85-
const { validationError, submitted, touched, showValidationError } = this.props;
85+
const {
86+
validationError, submitted, touched, showValidationError,
87+
} = this.props;
8688
return validationError && (touched || submitted) && showValidationError;
8789
}
8890

0 commit comments

Comments
 (0)