Skip to content

Commit

Permalink
xilem_html: Fix DOM element table web_sys type (#136)
Browse files Browse the repository at this point in the history
  • Loading branch information
Philipp-M authored Sep 21, 2023
1 parent 3465dde commit 0a11232
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions crates/xilem_html/src/element/elements.rs
Original file line number Diff line number Diff line change
Expand Up @@ -200,7 +200,7 @@ elements!(
(Caption, caption, web_sys::HtmlTableCaptionElement),
(Col, col, web_sys::HtmlTableColElement),
(Colgroup, colgroup, web_sys::HtmlTableColElement),
(Table, table, web_sys::HtmlTableSectionElement),
(Table, table, web_sys::HtmlTableElement),
(Tbody, tbody, web_sys::HtmlTableSectionElement),
(Td, td, web_sys::HtmlTableCellElement),
(Tfoot, tfoot, web_sys::HtmlTableSectionElement),
Expand All @@ -217,7 +217,7 @@ elements!(
(Legend, legend, web_sys::HtmlLegendElement),
(Meter, meter, web_sys::HtmlMeterElement),
(Optgroup, optgroup, web_sys::HtmlOptGroupElement),
(Option, option, web_sys::HtmlOptionElement),
(OptionElement, option, web_sys::HtmlOptionElement),
(Output, output, web_sys::HtmlOutputElement),
(Progress, progress, web_sys::HtmlProgressElement),
(Select, select, web_sys::HtmlSelectElement),
Expand Down

0 comments on commit 0a11232

Please sign in to comment.