Skip to content

Commit

Permalink
Merge branch 'main' into feature/apikey_deprecation
Browse files Browse the repository at this point in the history
  • Loading branch information
kc13greiner authored Jul 20, 2022
2 parents cdd908a + 0c78f8a commit e04f412
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion src/plugins/data/common/search/tabify/tabify_docs.ts
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ export function flattenHit(hit: Hit, indexPattern?: DataView, params?: TabifyDoc
continue;
}

const hasValidMapping = field?.type !== 'conflict';
const hasValidMapping = field && field.type !== 'conflict';
const isValue = !isPlainObject(val);

if (hasValidMapping || isValue) {
Expand Down

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit e04f412

Please sign in to comment.