Skip to content

Commit

Permalink
fix: add trailing slash to urls in previous releases table (#6111)
Browse files Browse the repository at this point in the history
  • Loading branch information
weslord authored Nov 15, 2023
1 parent b32db7f commit 450de11
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion components/Downloads/DownloadReleasesTable.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ const DownloadReleasesTable: FC = () => {
<td data-label="NODE_MODULE_VERSION">{release.modules}</td>
<td className="download-table-last">
<a
href={`https://nodejs.org/download/release/${release.versionWithPrefix}`}
href={`https://nodejs.org/download/release/${release.versionWithPrefix}/`}
>
{t('components.downloadReleasesTable.releases')}
</a>
Expand Down

0 comments on commit 450de11

Please sign in to comment.