Skip to content

Commit

Permalink
Fix packages table
Browse files Browse the repository at this point in the history
  • Loading branch information
D3vil0p3r committed Nov 16, 2024
1 parent 1b4f967 commit d03eb40
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion src/components/package-table.astro
Original file line number Diff line number Diff line change
Expand Up @@ -166,7 +166,14 @@ let totalPackages = apiResponse.meta.pagination.total;
${p.installed_size}
</td>
<td class="whitespace-wrap px-3 py-4 text-sm text-gray-500 dark:text-gray-300">
${p.upstream_url}
<a
href="${p.upstream_url}"
target="_blank"
rel="noopener noreferrer"
class="text-blue-500 underline hover:text-blue-700"
>
${p.upstream_url}
</a>
</td>
`;
dataRows.appendChild(tr);
Expand Down

0 comments on commit d03eb40

Please sign in to comment.