Skip to content

Commit

Permalink
refactor(downloadreleasestable): added module version back to the rel…
Browse files Browse the repository at this point in the history
…eases table (nodejs#7285)
  • Loading branch information
benhalverson authored Nov 29, 2024
1 parent c747084 commit b2046cf
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions apps/site/components/Downloads/DownloadReleasesTable.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ const DownloadReleasesTable: FC = async () => {
<thead>
<tr>
<th>Node.js Version</th>
<th>Module Version</th>
<th>Codename</th>
<th>Release Date</th>
<th colSpan={2}>npm</th>
Expand All @@ -27,6 +28,7 @@ const DownloadReleasesTable: FC = async () => {
{releaseData.map(release => (
<tr key={release.major}>
<td data-label="Version">v{release.version}</td>
<td data-label="Modules">v{release.modules}</td>
<td data-label="LTS">{release.codename || '-'}</td>
<td data-label="Date">
<time>{release.releaseDate}</time>
Expand Down

0 comments on commit b2046cf

Please sign in to comment.