Skip to content

Commit e85d85a

Browse files
committed
Group Profile: Sort projects by date in descending order
1 parent 56fbb1e commit e85d85a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

common/components/common/groups/AboutGroupDisplay.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ class AboutGroupDisplay extends React.PureComponent<Props, State> {
4747
: [];
4848
return ({
4949
group: group,
50-
approvedProjects: approvedProjects,
50+
approvedProjects: _.reverse(_.sortBy(approvedProjects, (p: ProjectRelationshipAPIData) => p.project_date_modified)),
5151
issueAreas: this.getUniqueIssueAreas(approvedProjects)
5252
});
5353
}

0 commit comments

Comments
 (0)