Skip to content

Commit

Permalink
Merge pull request #8 from EyeSeeTea/feat/sort-by-name
Browse files Browse the repository at this point in the history
Sorting dashboards by title
  • Loading branch information
adrianq authored Jul 24, 2023
2 parents 6fba893 + 4a9da18 commit 5149fae
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/domain/entities/Dashboard.ts
Original file line number Diff line number Diff line change
Expand Up @@ -101,6 +101,7 @@ export class Dashboard {
};
})
.uniqBy("reportId")
.sortBy(dashboard => dashboard.reportTitle)
.value();
}

Expand Down

0 comments on commit 5149fae

Please sign in to comment.