Skip to content

Commit

Permalink
Fix filter.meta.index type
Browse files Browse the repository at this point in the history
  • Loading branch information
Avinar-24 committed Nov 28, 2019
1 parent 928ae7a commit befffec
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ export function createFilterAction(
if (selectedFilters.length > 1) {
const indexPatterns = await Promise.all(
filters.map(filter => {
return indexPatternsService.indexPatterns.get(filter.meta.index);
return indexPatternsService.indexPatterns.get(filter.meta.index as string);
})
);

Expand Down

0 comments on commit befffec

Please sign in to comment.