Skip to content

Commit 443c80b

Browse files
committed
ISSUE #5266 - fix typescript linter error
1 parent 702f9af commit 443c80b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

frontend/src/v5/ui/controls/inputs/inputController.component.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,8 +36,8 @@ export type InputControllerProps<T,> = T & FormInputProps & {
3636
defaultValue?: any,
3737
onChange?: (event) => void,
3838
onBlur?: () => void,
39-
transformValueIn?: (val) => void,
40-
transformChangeEvent?: (val) => void,
39+
transformValueIn?: (val) => any,
40+
transformChangeEvent?: (val) => any,
4141
children?: any,
4242
};
4343

0 commit comments

Comments
 (0)