Skip to content

Commit

Permalink
[ML] Fixing empty index pattern list (elastic#42299)
Browse files Browse the repository at this point in the history
  • Loading branch information
jgowdyelastic committed Aug 5, 2019
1 parent 8697967 commit feb0d22
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ module.controller('MlNewJobStepIndexOrSearch',
timefilter.disableTimeRangeSelector(); // remove time picker from top of page
timefilter.disableAutoRefreshSelector(); // remove time picker from top of page

$scope.indexPatterns = getIndexPatterns().filter(indexPattern => !indexPattern.type);
$scope.indexPatterns = getIndexPatterns().filter(indexPattern => indexPattern.type !== 'rollup');

const path = $route.current.locals.nextStepPath;

Expand Down

0 comments on commit feb0d22

Please sign in to comment.