Skip to content

Commit

Permalink
typefix
Browse files Browse the repository at this point in the history
  • Loading branch information
mattkime committed Jul 29, 2021
1 parent 46af491 commit ce972ba
Showing 1 changed file with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,10 @@ export function KueryBar(props: { prepend?: React.ReactNode | string }) {
}

try {
const res = convertKueryToEsQuery(inputValue, indexPattern);
const res = convertKueryToEsQuery(
inputValue,
indexPattern as IndexPattern
);
if (!res) {
return;
}
Expand Down

0 comments on commit ce972ba

Please sign in to comment.