Skip to content

Commit 3ae5cf7

Browse files
committed
Add missing param for aggregations.
1 parent 73b3bd0 commit 3ae5cf7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/components/QueryEditor/BucketAggregationsEditor/SettingsEditor/TermsSettingsEditor.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -78,15 +78,15 @@ export const TermsSettingsEditor = ({ bucketAgg }: Props) => {
7878
/>
7979
</InlineField>
8080

81-
{/* <InlineField label="Missing" {...inlineFieldProps}>
81+
<InlineField label="Missing" {...inlineFieldProps}>
8282
<Input
8383
id={`${baseId}-missing`}
8484
onBlur={(e) =>
8585
dispatch(changeBucketAggregationSetting({ bucketAgg, settingName: 'missing', newValue: e.target.value }))
8686
}
8787
defaultValue={bucketAgg.settings?.missing || bucketAggregationConfig.terms.defaultSettings?.missing}
8888
/>
89-
</InlineField> */}
89+
</InlineField>
9090
</>
9191
);
9292
};

0 commit comments

Comments
 (0)