From 5f4c7eb5bf075028068b0969767dadf1b52ac535 Mon Sep 17 00:00:00 2001 From: Pedro Lisboa <35539594+pedrobslisboa@users.noreply.github.com> Date: Tue, 30 Jul 2024 04:38:42 -0300 Subject: [PATCH] Fix playsinline misswriting for videoHTMLAttributes (#149) Co-authored-by: Firstname Lastname --- packages/react/src/DomProps.ml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/react/src/DomProps.ml b/packages/react/src/DomProps.ml index 36f107721..336782471 100644 --- a/packages/react/src/DomProps.ml +++ b/packages/react/src/DomProps.ml @@ -1074,7 +1074,7 @@ let videoHTMLAttributes = Attribute { name = "controls"; jsxName = "controls"; type_ = Bool }; Attribute { name = "crossorigin"; jsxName = "crossOrigin"; type_ = String }; Attribute { name = "height"; jsxName = "height"; type_ = String (* number | *) }; - Attribute { name = "playsInline"; jsxName = "playsinline"; type_ = Bool }; + Attribute { name = "playsinline"; jsxName = "playsInline"; type_ = Bool }; Attribute { name = "loop"; jsxName = "loop"; type_ = Bool }; Attribute { name = "poster"; jsxName = "poster"; type_ = String };