Commit 1463de7c019cf1812f1a9b57a9f2ad8cd76672fa
1 parent
cb0201e8
Delete UI filtering for getEdgeDashboards
Showing
1 changed file
with
0 additions
and
3 deletions
... | ... | @@ -302,9 +302,6 @@ function DashboardService($rootScope, $http, $q, $location, $filter) { |
302 | 302 | } |
303 | 303 | $http.get(url, config).then(function success(response) { |
304 | 304 | response.data = prepareDashboards(response.data); |
305 | - if (pageLink.textSearch) { | |
306 | - response.data.data = $filter('filter')(response.data.data, {title: pageLink.textSearch}); | |
307 | - } | |
308 | 305 | deferred.resolve(response.data); |
309 | 306 | }, function fail() { |
310 | 307 | deferred.reject(); | ... | ... |