Skip to content

Commit

Permalink
fix: digests not showing for paginated rows (#2003)
Browse files Browse the repository at this point in the history
  • Loading branch information
M7mdisk authored Sep 20, 2024
1 parent 31a76fe commit 3d93830
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions templates/details/resources.html
Original file line number Diff line number Diff line change
Expand Up @@ -179,6 +179,10 @@ <h3 class="p-heading--5">Release history</h3>
var fileCell = document.createElement("td");
fileCell.innerText = release.download.size * 1000 * 1000;
tableRow.appendChild(fileCell);
} else {
var digestCell = document.createElement("td");
digestCell.innerText = release.download["hash-sha-256"].slice(0, 12);
tableRow.appendChild(digestCell);
}

revisionsTableBody.appendChild(tableRow);
Expand Down

0 comments on commit 3d93830

Please sign in to comment.