From 2f1fe83119c33b3f1f087b1a1644f59b1bc56651 Mon Sep 17 00:00:00 2001 From: Joe Reuter Date: Fri, 9 Aug 2019 10:33:36 +0200 Subject: [PATCH] fix graph index pattern filter (#42674) (#42831) --- x-pack/legacy/plugins/graph/public/app.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/x-pack/legacy/plugins/graph/public/app.js b/x-pack/legacy/plugins/graph/public/app.js index f89fd54556546..2f65077226a10 100644 --- a/x-pack/legacy/plugins/graph/public/app.js +++ b/x-pack/legacy/plugins/graph/public/app.js @@ -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) {