Closed OceanOak closed 2 years ago
Changed spellcheck from
let spellcheck = b => if b { prop("spellcheck", "spellcheck") } else { noProp }
to
let spellcheck = (b: bool) => Vdom.attribute("", "spellcheck", string_of_bool(b))
Great, thanks!
Changed spellcheck from
to
let spellcheck = (b: bool) => Vdom.attribute("", "spellcheck", string_of_bool(b))