Skip to content

Commit c5c2369

Browse files
authored
Tiny adjustment to the search filter (#741)
1 parent 51e52d2 commit c5c2369

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

assets/js/projects/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ angular.module("app", []).controller("ProjectController", function($scope) {
5555
return true;
5656
}
5757
var query = $scope.query.toLowerCase(),
58-
name = value.name.toLowerCase(),
58+
name = value.nameWithOwner.toLowerCase(),
5959
description = value.description ? value.description.toLowerCase() : '',
6060
queryMatch = name.indexOf(query) > -1 || description.indexOf(query) > -1;
6161
return queryMatch;

0 commit comments

Comments
 (0)