Skip to content

Commit bd2e36d

Browse files
committed
Fix(viewer): Make p button work in static viewer
1 parent 6b3ad7e commit bd2e36d

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

freeze_viewer.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@ def _add_html_extensions(build_dir: Path):
125125
for file_path in build_path.rglob("*"):
126126
if file_path.is_file() and not file_path.name.endswith(".html"):
127127
# Skip known non-HTML files
128-
if file_path.name in ["picker", "load-readme"] or file_path.name.startswith("line-counts"):
128+
if file_path.name in ["load-readme"] or file_path.name.startswith("line-counts"):
129129
continue
130130

131131
# Skip if it's in static directory

0 commit comments

Comments
 (0)