Skip to content

Commit

Permalink
Fix search on overview
Browse files Browse the repository at this point in the history
  • Loading branch information
patrickdemooij9 committed Jul 6, 2021
1 parent 5de9055 commit 2c0c08b
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,7 @@ angular.module("umbraco").controller("LinkErrorsController", function ($scope, $
var searchTerm = params.filter().Search;
var searchedData = searchTerm ?
data.filter(function (linkError) {
return linkError.Url.toLowerCase().indexOf(searchTerm.toLowerCase()) > -1;
return linkError.url.toLowerCase().indexOf(searchTerm.toLowerCase()) > -1;
}) : data;

var filteredData = $scope.showHidden ? searchedData :
Expand Down

0 comments on commit 2c0c08b

Please sign in to comment.