Skip to content

Commit

Permalink
fix graph index pattern filter (elastic#42674) (elastic#42831)
Browse files Browse the repository at this point in the history
  • Loading branch information
flash1293 authored Aug 9, 2019
1 parent 0af7e33 commit 2f1fe83
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion x-pack/legacy/plugins/graph/public/app.js
Original file line number Diff line number Diff line change
Expand Up @@ -738,7 +738,7 @@ app.controller('graphuiPlugin', function (
}
}

$scope.indices = $route.current.locals.indexPatterns.filter(indexPattern => !indexPattern.type);
$scope.indices = $route.current.locals.indexPatterns.filter(indexPattern => !indexPattern.attributes.type);


$scope.setDetail = function (data) {
Expand Down

0 comments on commit 2f1fe83

Please sign in to comment.