diff --git a/src/public/index.html b/src/public/index.html
index 49e6a9a..e4b3929 100644
--- a/src/public/index.html
+++ b/src/public/index.html
@@ -215,6 +215,9 @@
+
+ Only the first 500 results are shown.
+
@@ -2566,7 +2569,8 @@
return nodeALongName.localeCompare(nodeBLongName);
});
- return nodes;
+ // only return the first 500 results to avoid ui lag...
+ return nodes.slice(0, 500);
},
selectedNodeLatestPowerMetric() {