mirror of
https://github.com/elastic/kibana.git
synced 2025-04-24 01:38:56 -04:00
Handle ES _default_ mapping names (#15432)
This commit is contained in:
parent
95755ef794
commit
65c7baf274
1 changed files with 1 additions and 1 deletions
|
@ -5,5 +5,5 @@
|
|||
* @return {Array<string>}
|
||||
*/
|
||||
export function getTypes(mappings) {
|
||||
return Object.keys(mappings);
|
||||
return Object.keys(mappings).filter(type => type !== '_default_');
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue