Commit 0d85254a by Torkel Ödegaard

fix(annotations): Fixed issue with entering annotation edit view, fixes #4857

parent e3376136
...@@ -2,6 +2,7 @@ ...@@ -2,6 +2,7 @@
### Bug fixes ### Bug fixes
* **Dashboard title**: Fixed max dashboard title width (media query) for large screens, fixes [#4859](https://github.com/grafana/grafana/issues/4859) * **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) # 3.0.0-beta6 (2016-04-29)
......
...@@ -66,7 +66,7 @@ function (angular, _, coreModule, config) { ...@@ -66,7 +66,7 @@ function (angular, _, coreModule, config) {
}; };
this.getAnnotationSources = function() { this.getAnnotationSources = function() {
return _.reduce(config.datasources, function(memo, key, value) { return _.reduce(config.datasources, function(memo, value) {
if (value.meta && value.meta.annotations) { if (value.meta && value.meta.annotations) {
memo.push(value); memo.push(value);
......
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