From 5525ccc409c3f02fb87364c6e6cdd483557ce572 Mon Sep 17 00:00:00 2001 From: Jaime Gago Date: Mon, 7 Apr 2014 11:13:18 -0700 Subject: [PATCH] Update dashLoader.js Remove "Kibana" left overs in dashboard alerts --- src/app/controllers/dashLoader.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/app/controllers/dashLoader.js b/src/app/controllers/dashLoader.js index cf77a28dd09..4cbf5c3aa1b 100644 --- a/src/app/controllers/dashLoader.js +++ b/src/app/controllers/dashLoader.js @@ -49,7 +49,7 @@ function (angular, _, moment) { $scope.set_default = function() { if(dashboard.set_default($location.path())) { - alertSrv.set('Home Set','This page has been set as your default Kibana dashboard','success',5000); + alertSrv.set('Home Set','This page has been set as your default dashboard','success',5000); } else { alertSrv.set('Incompatible Browser','Sorry, your browser is too old for this feature','error',5000); } @@ -57,7 +57,7 @@ function (angular, _, moment) { $scope.purge_default = function() { if(dashboard.purge_default()) { - alertSrv.set('Local Default Clear','Your Kibana default dashboard has been reset to the default', + alertSrv.set('Local Default Clear','Your default dashboard has been reset to the default', 'success',5000); } else { alertSrv.set('Incompatible Browser','Sorry, your browser is too old for this feature','error',5000);