mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -06:00
fix(annotations): Fixed issue with entering annotation edit view, fixes #4857
This commit is contained in:
parent
e3376136ca
commit
0d85254a19
@ -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);
|
||||
|
Loading…
Reference in New Issue
Block a user