Skip to content

Commit b2046cf

Browse files
authored
refactor(downloadreleasestable): added module version back to the releases table (#7285)
1 parent c747084 commit b2046cf

1 file changed

Lines changed: 2 additions & 0 deletions

File tree

apps/site/components/Downloads/DownloadReleasesTable.tsx

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ const DownloadReleasesTable: FC = async () => {
1818
<thead>
1919
<tr>
2020
<th>Node.js Version</th>
21+
<th>Module Version</th>
2122
<th>Codename</th>
2223
<th>Release Date</th>
2324
<th colSpan={2}>npm</th>
@@ -27,6 +28,7 @@ const DownloadReleasesTable: FC = async () => {
2728
{releaseData.map(release => (
2829
<tr key={release.major}>
2930
<td data-label="Version">v{release.version}</td>
31+
<td data-label="Modules">v{release.modules}</td>
3032
<td data-label="LTS">{release.codename || '-'}</td>
3133
<td data-label="Date">
3234
<time>{release.releaseDate}</time>

0 commit comments

Comments
 (0)