diff --git a/examples/mysite/title_page/subpage/land/help/generate_dashboard.py b/examples/mysite/title_page/subpage/land/help/generate_dashboard.py index a8e6b2c0..9eff8318 100644 --- a/examples/mysite/title_page/subpage/land/help/generate_dashboard.py +++ b/examples/mysite/title_page/subpage/land/help/generate_dashboard.py @@ -63,7 +63,7 @@ dashboard.add_html_block( block_id="co_benefit", - html_content='
', + html_content='
', col_span=3, grid_area="co_benefit" ) @@ -85,14 +85,14 @@ dashboard.add_html_block( block_id="sustainable", - html_content='
', + html_content='
', col_span=2, grid_area="sustainable" ) dashboard.add_html_block( block_id="birds", - html_content='
', + html_content='
', col_span=3, grid_area="birds" ) diff --git a/examples/mysite/title_page/subpage/land/help/index.html b/examples/mysite/title_page/subpage/land/help/index.html index 4ca4c58e..9dfa567f 100644 --- a/examples/mysite/title_page/subpage/land/help/index.html +++ b/examples/mysite/title_page/subpage/land/help/index.html @@ -1021,7 +1021,7 @@
-
+
@@ -1067,7 +1067,7 @@
-
+
@@ -1083,7 +1083,7 @@
-
+
diff --git a/fix_a11y.py b/fix_a11y.py deleted file mode 100644 index 462e6888..00000000 --- a/fix_a11y.py +++ /dev/null @@ -1,11 +0,0 @@ -import re - -file_path = "tests/e2e/test_a11y_ux.py" -with open(file_path, "r") as f: - content = f.read() - -content = content.replace("page.keyboard.press(\"ArrowRight\")", "page.keyboard.press(\"Tab\")") -content = content.replace("page.keyboard.press(\"ArrowLeft\")", "page.keyboard.press(\"Shift+Tab\")") - -with open(file_path, "w") as f: - f.write(content)