Browse Source

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

Torkel Ödegaard 10 years ago
parent
commit
745162c589
2 changed files with 3 additions and 1 deletions
  1. 2 0
      CHANGELOG.md
  2. 1 1
      public/app/features/dashboard/graphiteImportCtrl.js

+ 2 - 0
CHANGELOG.md

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

+ 1 - 1
public/app/features/dashboard/graphiteImportCtrl.js

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