mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -06:00
Unify default value
This commit is contained in:
parent
d5a0bf4e3f
commit
d8e1d207a2
@ -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",
|
||||
|
@ -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}`;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user