You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In the Orders page (/board.php?gameID=XXXXXX&viewArchive=Orders) the ul > li nesting is not correct. ul tags can only have li children, so each nested list should be inside an li tag.
Bug report
In the Orders page (
/board.php?gameID=XXXXXX&viewArchive=Orders
) theul > li
nesting is not correct.ul
tags can only haveli
children, so each nested list should be inside anli
tag.https://developer.mozilla.org/en-US/docs/Learn/HTML/Introduction_to_HTML/HTML_text_fundamentals#Nesting_lists
Fixing this will give us a better structured markup of Rounds / Countries / Phases, and maybe allow for a better UI
Expected behaviour
Nested
ul
should be inside a parent'sli
:Actual behaviour
Nested
ul
is placed directly under parentul
:Steps to reproduce
Open a game and click the
Orders
linkThe text was updated successfully, but these errors were encountered: