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

This commit is contained in:
Torkel Ödegaard 2016-04-29 23:14:39 +02:00
parent e3376136ca
commit 0d85254a19
2 changed files with 2 additions and 1 deletions

View File

@ -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)

View File

@ -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);