mirror of
https://github.com/grafana/grafana.git
synced 2025-02-09 23:16:16 -06:00
changelog: adds note for #14795
This commit is contained in:
parent
8e771f9a8f
commit
3bdd4a5c33
@ -23,6 +23,7 @@
|
||||
|
||||
### Bug fixes
|
||||
* **Search**: Fix for issue with scrolling the "tags filter" dropdown, fixes [#14486](https://github.com/grafana/grafana/issues/14486)
|
||||
* **Prometheus**: Query for annotation always uses 60s step regardless of dashboard range, fixes [#14795](https://github.com/grafana/grafana/issues/14795)
|
||||
|
||||
# 5.4.3 (2019-01-14)
|
||||
|
||||
|
@ -644,8 +644,8 @@ describe('PrometheusDatasource', () => {
|
||||
ctx.ds.annotationQuery(query);
|
||||
const req = backendSrv.datasourceRequest.mock.calls[0][0];
|
||||
// Range in seconds: (to - from) / 1000
|
||||
// Max_datapints: 11000
|
||||
// Step: range / max_datapints
|
||||
// Max_datapoints: 11000
|
||||
// Step: range / max_datapoints
|
||||
const step = 236;
|
||||
expect(req.url).toContain(`step=${step}`);
|
||||
});
|
||||
|
Loading…
Reference in New Issue
Block a user