Skip to content

Commit

Permalink
add two missing HTML tags (fixes 4005)
Browse files Browse the repository at this point in the history
  • Loading branch information
falkoschindler committed Nov 19, 2024
1 parent bfaa142 commit 1f78c86
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions nicegui/html.py
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,7 @@ def __init__(self, inner_html: Optional[str] = None, **kwargs) -> None:
footer = _create_html_element('footer')
form = _create_html_element('form')
h1 = _create_html_element('h1')
header = _create_html_element('header')
hgroup = _create_html_element('hgroup')
hr = _create_html_element('hr')
i = _create_html_element('i')
Expand Down Expand Up @@ -105,6 +106,7 @@ def __init__(self, inner_html: Optional[str] = None, **kwargs) -> None:
th = _create_html_element('th')
thead = _create_html_element('thead')
time = _create_html_element('time')
tr = _create_html_element('tr')
track = _create_html_element('track')
u = _create_html_element('u')
ul = _create_html_element('ul')
Expand Down

0 comments on commit 1f78c86

Please sign in to comment.