Skip to content

Commit

Permalink
Merged PR 208: Merge ux to master
Browse files Browse the repository at this point in the history
  • Loading branch information
chrismason authored and Kees Verhaar committed Jun 13, 2017
2 parents 43398f7 + 6fd92a6 commit 9c11ab6
Showing 1 changed file with 3 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -244,6 +244,9 @@ export class BoardConfiguration {
allBacklogs = backlogs.portfolioBacklogs;
// allBacklogs = process.portfolioBacklogs.filter(b => b.name === "Epics");
allBacklogs.push(backlogs.requirementBacklog);
allBacklogs = allBacklogs.sort((a, b) => {
return b.rank - a.rank;
});
try {
for (let backlogIndex = 0; backlogIndex < allBacklogs.length; backlogIndex++) {
let backlog = allBacklogs[backlogIndex];
Expand Down

0 comments on commit 9c11ab6

Please sign in to comment.