mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -06:00
cloudwatch dimension null check
This commit is contained in:
parent
36ab8ae19c
commit
573632012e
@ -129,7 +129,7 @@ function (angular, _) {
|
|||||||
.pluck('Dimensions')
|
.pluck('Dimensions')
|
||||||
.flatten()
|
.flatten()
|
||||||
.filter(function(dimension) {
|
.filter(function(dimension) {
|
||||||
return dimension.Name === dimensionKey;
|
return dimension !== null && dimension.Name === dimensionKey;
|
||||||
})
|
})
|
||||||
.pluck('Value')
|
.pluck('Value')
|
||||||
.uniq()
|
.uniq()
|
||||||
|
Loading…
Reference in New Issue
Block a user