Commit 1dfc5762 by Torkel Ödegaard

Panel timeshift: You can now use panel timeshift without a relative time override, Fixes #1848

parent 170e8a5d
......@@ -3,6 +3,7 @@
**Fixes**
- [Issue #1832](https://github.com/grafana/grafana/issues/1832). Graph Panel + Legend Table mode: Many series casued zero height graph, now legend will never reduce the height of the graph below 50% of row height.
- [Issue #1846](https://github.com/grafana/grafana/issues/1846). Snapshots: Fixed issue with snapshoting dashboards with an interval template variable
- [Issue #1848](https://github.com/grafana/grafana/issues/1848). Panel timeshift: You can now use panel timeshift without a relative time override
# 2.0.1 (2015-04-20)
......
......@@ -43,7 +43,7 @@ function (angular, _, kbn, $) {
}
if (scope.panel.timeShift) {
if (!kbn.isValidTimeSpan(scope.panel.timeFrom)) {
if (!kbn.isValidTimeSpan(scope.panel.timeShift)) {
scope.panelMeta.timeInfo = 'invalid timeshift';
return;
}
......
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