This commit is contained in:
Boaz Leskes 2014-02-06 19:17:15 +01:00
parent 86b0a8c787
commit ea997817c3

View file

@ -857,10 +857,13 @@ define([
$scope.detailViewTip = function () {
if ($scope.panel.mode === "nodes") {
return $scope.hasSelected($scope.rows) ? 'Open node statistics dashboard for selected nodes' :
'Select nodes and click to open the node statistics dashboard';
} else {
return $scope.hasSelected($scope.rows) ? 'Open index stats dashboard for selected indices' :
return $scope.hasSelected($scope.rows) ?
'Open node statistics dashboard for selected nodes' :
'Select nodes and click to open the node statistics dashboard';
}
else {
return $scope.hasSelected($scope.rows) ?
'Open index stats dashboard for selected indices' :
'Select indices and click to open the index stats dashboard';
}