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 3ea707e commit f11e7adCopy full SHA for f11e7ad
typescript/packages/common-html/src/render.ts
@@ -248,7 +248,7 @@ const cleanEventProp = (key: string) => {
248
if (!key.startsWith("on")) {
249
return null;
250
}
251
- return key.slice(2);
+ return key.slice(2).toLowerCase();
252
};
253
254
/** Attach an event listener, returning a function to cancel the listener */
0 commit comments