Unify default value

This commit is contained in:
Ivana Huckova 2023-08-28 13:41:08 +02:00
parent d5a0bf4e3f
commit d8e1d207a2
2 changed files with 2 additions and 2 deletions

View File

@ -452,7 +452,7 @@ func (b *aggBuilderImpl) Filters(key string, fn func(a *FiltersAggregation, b Ag
func (b *aggBuilderImpl) GeoHashGrid(key, field string, fn func(a *GeoHashGridAggregation, b AggBuilder)) AggBuilder {
innerAgg := &GeoHashGridAggregation{
Field: field,
Precision: 5,
Precision: 3,
}
aggDef := newAggDef(key, &aggContainer{
Type: "geohash_grid",

View File

@ -61,7 +61,7 @@ export const useDescription = (bucketAgg: BucketAggregation): string => {
}
case 'geohash_grid': {
const precision = Math.max(Math.min(parseInt(bucketAgg.settings?.precision || '5', 10), 12), 1);
const precision = Math.max(Math.min(parseInt(bucketAgg.settings?.precision || '3', 10), 12), 1);
return `Precision: ${precision}`;
}