Skip to content

Commit

Permalink
Merge pull request #51 from quickwit-oss/fmassot/add-missing-parameter
Browse files Browse the repository at this point in the history
Add missing param for aggregations.
  • Loading branch information
fmassot authored Jan 22, 2024
2 parents 73b3bd0 + 3ae5cf7 commit 2e7ca66
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 2e7ca66

Please sign in to comment.