Skip to content

Commit

Permalink
v2.7.6 release - fixes #2111
Browse files Browse the repository at this point in the history
  • Loading branch information
anthonysena committed Jan 23, 2020
1 parent 4a317dd commit ace575e
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions js/pages/home/home.html
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,9 @@
<div class="heading">Release Notes</div>
<div class="release-notes">
<div class="paddedWrapper">
<a href="https://github.com/OHDSI/Atlas/releases" target="_new">ATLAS Version 2.7.5 Release Notes</a>
<a href="https://github.com/OHDSI/Atlas/releases" target="_new">ATLAS Version 2.7.6 Release Notes</a>
<br/>
<a href="https://github.com/OHDSI/WebAPI/releases" target="_new">WebAPI Version 2.7.5 Release Notes</a>
<a href="https://github.com/OHDSI/WebAPI/releases" target="_new">WebAPI Version 2.7.6 Release Notes</a>
</div>

<div class="paddedWrapper">
Expand Down
4 changes: 2 additions & 2 deletions js/pages/home/home.js
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,8 @@ define([
}

async onPageCreated() {
const atlasIssues = await this.getIssuesFromAllPages('OHDSI/Atlas', 29);
const webapiIssues = await this.getIssuesFromAllPages('OHDSI/WebAPI', 31);
const atlasIssues = await this.getIssuesFromAllPages('OHDSI/Atlas', 30);
const webapiIssues = await this.getIssuesFromAllPages('OHDSI/WebAPI', 32);
let issues = lodash.orderBy([...atlasIssues, ...webapiIssues], ['closed_at'], ['desc']);
// The API returns both issues and PRs and PRs in most cases would duplicate issues, therefore just leave issues
issues = issues.filter(item => item.html_url.includes('/issues/'));
Expand Down

0 comments on commit ace575e

Please sign in to comment.