From c3e6414504ccf9852627ef934fba44a6ae743c59 Mon Sep 17 00:00:00 2001 From: Martin Berg Alstad <600878@stud.hvl.no> Date: Tue, 10 Jan 2023 22:49:47 +0100 Subject: [PATCH] changed onChange to onInput according to standard HTML --- src/types/interfaces.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/types/interfaces.ts b/src/types/interfaces.ts index 18aa369..cbe2437 100644 --- a/src/types/interfaces.ts +++ b/src/types/interfaces.ts @@ -22,7 +22,7 @@ export interface TitleProps extends ChildProps { } export interface InputProps extends TitleProps { - onChange?: JSX.EventHandlerUnion, + onInput?: JSX.EventHandlerUnion, placeholder?: string | null, required?: boolean, type?: string,