diff --git a/index.html b/index.html
index a0defe3b..1a1bd342 100644
--- a/index.html
+++ b/index.html
@@ -76,6 +76,8 @@
onmousedown="keyPressed(event, '#/mentors')">Mentors
FAQs
+ COMPLETED PROJECTS
diff --git a/resources/js/directives/projects.js b/resources/js/directives/projects.js
index fd37e74f..8af8368b 100644
--- a/resources/js/directives/projects.js
+++ b/resources/js/directives/projects.js
@@ -40,7 +40,7 @@ angular.module('coala')
}
$scope.sortProjects = function () {
- $scope.projectList = orderBy($scope.projectList, 'mapped_status');
+ $scope.projectList = orderByFilter($scope.projectList, 'mapped_status');
}
$scope.getFiltersMetadata = function () {
@@ -422,4 +422,3 @@ angular.module('coala')
$scope.getAllFilters();
});
-