mirror of
https://github.com/grafana/grafana.git
synced 2025-02-16 18:34:52 -06:00
Merge pull request #3417 from mtanda/cloudwatch_dimension_filter_fix
(cloudwatch) null check of dimension
This commit is contained in:
commit
7886318341
@ -129,7 +129,7 @@ function (angular, _) {
|
||||
.pluck('Dimensions')
|
||||
.flatten()
|
||||
.filter(function(dimension) {
|
||||
return dimension.Name === dimensionKey;
|
||||
return dimension !== null && dimension.Name === dimensionKey;
|
||||
})
|
||||
.pluck('Value')
|
||||
.uniq()
|
||||
|
Loading…
Reference in New Issue
Block a user