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
repository: str,
) ->Table:
"""Renders a list of pull requests as a table"""# if pull_requests:# import pdb# pdb.set_trace()# link = pull_requests[0].web_url.split("/-/")[0]# else:# link = ""link=""show_diff=False# TODO: replace with pull_request.web_url# link = f"https://www.github.com/{org}/{repository}"table=Table(show_header=True, header_style="bold white")
table.add_column("#", style="dim", width=5)
table.add_column(
f"[link={link}]{title}[/link]",
width=75,
)
table.add_column("Labels", width=30)
58ecbaf9f1e101521b44bbefb0f6a5494ca35400
The text was updated successfully, but these errors were encountered:
replace with pull_request.web_url
link = f"https://www.github.com/{org}/{repository}"
reviews/reviews/layout/helpers.py
Line 55 in a7d86fa
58ecbaf9f1e101521b44bbefb0f6a5494ca35400
The text was updated successfully, but these errors were encountered: