Commit 78863183 by Torkel Ödegaard

Merge pull request #3417 from mtanda/cloudwatch_dimension_filter_fix

(cloudwatch) null check of dimension
parents 002455da 57363201
......@@ -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()
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment