Commit 733a9af6 by Torkel Ödegaard

small changes

parent 6cc1502c
......@@ -45,7 +45,7 @@ function (angular) {
};
$scope.getDatasources = function() {
backendSrv.get('/api/datasources/list').then(function(results) {
backendSrv.get('/api/datasources').then(function(results) {
$scope.datasources = results;
});
};
......
......@@ -25,7 +25,7 @@ function (angular, _, kbn) {
url = '/temp/' + id;
}
return backendSrv.get('/api/dashboards/' + id)
return backendSrv.get('/api/dashboard/' + id)
.then(function(data) {
if (data) {
return angular.fromJson(data);
......
......@@ -16,7 +16,7 @@
<i class="fa fa-signal"></i>
Graphs
</a>
<a class="pro-sidemenu-link" href="/charts">
<a class="pro-sidemenu-link" href="charts">
<i class="fa fa-bolt" style="padding-right: 23px"></i>
Alerts
</a>
......
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