fix(graphite): Import dashboard from graphite is working again, fixes #2490

This commit is contained in:
Torkel Ödegaard
2015-08-11 21:20:20 +02:00
parent 089508db8e
commit 745162c589
2 changed files with 3 additions and 1 deletions

View File

@@ -4,6 +4,8 @@
- [Issue #2457](https://github.com/grafana/grafana/issues/2457). Admin: admin page for all grafana organizations (list / edit view)
- [Issue #1186](https://github.com/grafana/grafana/issues/1186). Time Picker: New option `today`, will set time range from midnight to now
**Fixes**
- [Issue #2490](https://github.com/grafana/grafana/issues/2490). Graphite: Dashboard import was broken in 2.1 and 2.1.1, working now
# 2.1.1 (2015-08-11)

View File

@@ -90,7 +90,7 @@ function (angular, app, _, kbn) {
});
window.grafanaImportDashboard = newDashboard;
$location.path('/dashboard/import/' + kbn.slugifyForUrl(newDashboard.title));
$location.path('/dashboard-import/' + kbn.slugifyForUrl(newDashboard.title));
}
});
});