We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8556111 commit c80bd85Copy full SHA for c80bd85
src/reconciler/host.ts
@@ -33,7 +33,7 @@ function getPropertyKind(
33
| { type: "inputevent"; key: string } {
34
if (key.startsWith(EVENT_PREFIX)) {
35
const eventName = key.slice(EVENT_PREFIX.length);
36
- if (type === "input") {
+ if (eventName === "input" && (type === "input" || type === "textarea")) {
37
return { type: "inputevent", key: eventName };
38
} else {
39
return { type: "event", key: eventName };
0 commit comments