Skip to content

Commit

Permalink
fix console errors and side nav
Browse files Browse the repository at this point in the history
  • Loading branch information
Ayushmanwebdeveloper authored and andibraeu committed Dec 16, 2023
1 parent 83cc819 commit 407ccf2
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 2 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,8 @@
onmousedown="keyPressed(event, '#/mentors')">Mentors</a></li>
<li ng-class="{active:nc.isSet('/faq')}"><a ng-click="nc.setView('/faq')" onmousedown="keyPressed(event, '#/faq')"
onerror="">FAQs</a></li>
<li ng-class="{active:nc.isSet('/completed')}"><a ng-click="nc.setView('/completed')"
onmousedown="keyPressed(event, '#/completed')" onerror="">COMPLETED PROJECTS</a></li>
<li><a href="{{ site.githuburl }}" target="_blank" title="Fork us on GitHub"><i class="fa fa-github fa-2x"
aria-hidden="true"></i></a></li>
</ul>
Expand Down
3 changes: 1 addition & 2 deletions resources/js/directives/projects.js
Original file line number Diff line number Diff line change
Expand Up @@ -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 () {
Expand Down Expand Up @@ -422,4 +422,3 @@ angular.module('coala')

$scope.getAllFilters();
});

0 comments on commit 407ccf2

Please sign in to comment.