Skip to content

Commit

Permalink
Add missing param for aggregations.
Browse files Browse the repository at this point in the history
  • Loading branch information
fmassot committed Jan 22, 2024
1 parent 73b3bd0 commit 3ae5cf7
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -78,15 +78,15 @@ export const TermsSettingsEditor = ({ bucketAgg }: Props) => {
/>
</InlineField>

{/* <InlineField label="Missing" {...inlineFieldProps}>
<InlineField label="Missing" {...inlineFieldProps}>
<Input
id={`${baseId}-missing`}
onBlur={(e) =>
dispatch(changeBucketAggregationSetting({ bucketAgg, settingName: 'missing', newValue: e.target.value }))
}
defaultValue={bucketAgg.settings?.missing || bucketAggregationConfig.terms.defaultSettings?.missing}
/>
</InlineField> */}
</InlineField>
</>
);
};
Expand Down

0 comments on commit 3ae5cf7

Please sign in to comment.