mirror of https://github.com/grafana/grafana.git
cloudwatch dimension null check
This commit is contained in:
parent
36ab8ae19c
commit
573632012e
|
|
@ -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