Skip to content

Commit

Permalink
TEMP next-release hot-fix
Browse files Browse the repository at this point in the history
  • Loading branch information
hjoliver committed Apr 16, 2024
1 parent 615af3e commit d2b5d67
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions _layouts/default.html
Original file line number Diff line number Diff line change
Expand Up @@ -547,10 547,12 @@ <h3 id="publications">Publications and Reports</h3>
* @param {string} link - A URL link to the next release.
*/
function populateProgress(openIssues, closedIssues, title, link) {
const workProgress = closedIssues * 100 / (openIssues closedIssues);
// TEMP hot fix !!!!! const workProgress = closedIssues * 100 / (openIssues closedIssues);
const workProgress = 96;

const milestoneVersion = document.getElementById("milestone-version");
milestoneVersion.innerHTML = title;
// TEMP hot fix !!!!! milestoneVersion.innerHTML = title;
milestoneVersion.innerHTML = "8.3.0";

const milestoneURL = document.getElementById("milestone-url");
milestoneURL.setAttribute('href', link);
Expand Down

0 comments on commit d2b5d67

Please sign in to comment.