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 <[email protected]>
  • Loading branch information
henryiii committed Dec 22, 2023
1 parent 50ef410 commit d21e388
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/repo_review/html.py
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ def to_html(
)
print(f'<tr style="color: {color};">')
print(f'<td><span role="img" aria-label="{result_txt}">{icon}</span></td>')
print(f"<td>{result.name}</td>")
print(f"<td nowrap>{result.name}</td>")
if result.result is None or result.result:
print(f"<td>{description}</td>")
else:
Expand Down

0 comments on commit d21e388

Please sign in to comment.