You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
const h = (tag, props, ...children) => ({ tag, props, children });
const html = htm.bind(h);
const dom = html`<div onCompositionStart=${()=>{}} onClick=${()=>{}}>aaa</div>`
In props, the onCompositionStart becomes true. The expected behavior is that the value of onCompositionStart and onClick in props should both be Function
The text was updated successfully, but these errors were encountered:
Hi,
In
props
, theonCompositionStart
becomestrue
. The expected behavior is that the value ofonCompositionStart
andonClick
inprops
should both be FunctionThe text was updated successfully, but these errors were encountered: