diff --git a/js/apps/system/aardvark/frontend/css/clusterDashboardView.css b/js/apps/system/aardvark/frontend/css/clusterDashboardView.css index c0aeb8a7d9..d0f72b011f 100644 --- a/js/apps/system/aardvark/frontend/css/clusterDashboardView.css +++ b/js/apps/system/aardvark/frontend/css/clusterDashboardView.css @@ -85,3 +85,6 @@ div.domino-lower { margin-top: 0px; } +button.shard { + cursor: default; +} diff --git a/js/apps/system/aardvark/frontend/js/templates/clusterShardsView.ejs b/js/apps/system/aardvark/frontend/js/templates/clusterShardsView.ejs index 903b8e1126..d7d75e691d 100644 --- a/js/apps/system/aardvark/frontend/js/templates/clusterShardsView.ejs +++ b/js/apps/system/aardvark/frontend/js/templates/clusterShardsView.ejs @@ -1,4 +1,19 @@ +<% var statusClass = function(s) { + switch (s) { + case "ok": + return "success"; + case "warning": + return "warning"; + case "critical": + return "danger"; + } + }; +%>