mirror of
https://github.com/elastic/kibana.git
synced 2025-04-23 17:28:26 -04:00
linting
This commit is contained in:
parent
86b0a8c787
commit
ea997817c3
1 changed files with 7 additions and 4 deletions
|
@ -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';
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue