fix(web): make PR title clickable on /prs page (#1146)

* fix(web): make PR title clickable on /prs page

* chore: upload screenshot for #1145
This commit is contained in:
i-trytoohard 2026-04-12 08:43:53 +05:30 committed by GitHub
parent a3013780aa
commit 4950b431db
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 5 additions and 1 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 208 KiB

View File

@ -114,7 +114,11 @@ export function PRTableRow({ pr, muted = false }: PRTableRowProps) {
#{pr.number}
</a>
</td>
<td className="max-w-[420px] truncate px-3 py-2.5 text-sm font-medium">{pr.title}</td>
<td className="max-w-[420px] truncate px-3 py-2.5 text-sm font-medium">
<a href={pr.url} target="_blank" rel="noopener noreferrer" className="hover:underline">
{pr.title}
</a>
</td>
<td className="px-3 py-2.5 text-sm">
{unenriched ? shimmer : rateLimited ? (
<span className="text-[var(--color-text-tertiary)]"></span>