Skip to content

Commit

Permalink
fix: better wrapping in name column
Browse files Browse the repository at this point in the history
Signed-off-by: Henry Schreiner <henryschreineriii@gmail.com>
  • Loading branch information
henryiii committed Dec 22, 2023
1 parent 50ef410 commit b1680b7
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/repo_review/html.py
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,9 @@ def to_html(
print(md.render(family_description).strip())
if family_results:
print("<table>")
print("<tr><th>?</th><th>Name</th><th>Description</th></tr>")
print(
'<tr><th>?</th><th><span style="white-space: nowrap">Name</span></th><th>Description</th></tr>'
)
for result in family_results:
color = (
"orange"
Expand Down

0 comments on commit b1680b7

Please sign in to comment.