Skip to content

Commit

Permalink
Fix playsinline misswriting for videoHTMLAttributes (#149)
Browse files Browse the repository at this point in the history
Co-authored-by: Firstname Lastname <firstname.lastname@ahrefs.com>
  • Loading branch information
pedrobslisboa and Firstname Lastname committed Jul 30, 2024
1 parent 8f12df7 commit 5f4c7eb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/react/src/DomProps.ml
Original file line number Diff line number Diff line change
Expand Up @@ -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 };
Expand Down

0 comments on commit 5f4c7eb

Please sign in to comment.