release: v4.1.0

This commit is contained in:
Amruth Pillai
2024-05-05 14:55:06 +02:00
parent 68252c35fc
commit e87b05a93a
282 changed files with 11461 additions and 10713 deletions
+3 -1
View File
@@ -47,7 +47,9 @@ export const BadgeInput = forwardRef<HTMLInputElement, BadgeInputProps>(
ref={ref}
value={label}
onKeyDown={onKeyDown}
onChange={(event) => setLabel(event.target.value)}
onChange={(event) => {
setLabel(event.target.value);
}}
/>
);
},