@@ -2,6 +2,7 @@
### Bug fixes
* **Dashboard title**: Fixed max dashboard title width (media query) for large screens, fixes [#4859](https://github.com/grafana/grafana/issues/4859)
+* **Annotations**: Fixed issue with entering annotation edit view, fixes [#4857](https://github.com/grafana/grafana/issues/4857)
# 3.0.0-beta6 (2016-04-29)
@@ -66,7 +66,7 @@ function (angular, _, coreModule, config) {
};
this.getAnnotationSources = function() {
- return _.reduce(config.datasources, function(memo, key, value) {
+ return _.reduce(config.datasources, function(memo, value) {
if (value.meta && value.meta.annotations) {
memo.push(value);