mirror of
https://github.com/elastic/kibana.git
synced 2025-04-24 01:38:56 -04:00
Rollup fields were were merged twice with other fields, this caused duplicates. Fix of a bug introduced by #28762
This commit is contained in:
parent
bbbb33fc27
commit
4d69339d0e
1 changed files with 1 additions and 1 deletions
|
@ -69,7 +69,7 @@ export function registerFieldsForWildcardRoute(server) {
|
|||
const mergedRollupFields = mergeCapabilitiesWithFields(rollupIndexCapabilities, fieldsFromFieldCapsApi, rollupFields);
|
||||
|
||||
return {
|
||||
fields: [ ...rollupFields, ...mergedRollupFields ]
|
||||
fields: mergedRollupFields
|
||||
};
|
||||
} catch(err) {
|
||||
if (isEsError(err)) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue