Don't show IP addresses in addition to hostnames of forward destinations to save some space in the legend

This commit is contained in:
DL6ER
2017-04-21 15:50:30 +02:00
parent bc3ff69b3f
commit 3364f989cf

View File

@@ -166,7 +166,7 @@ function updateForwardedOverTime() {
if(key.indexOf("|") > -1)
{
var idx = key.indexOf("|");
key = key.substr(0, idx)+" ("+key.substr(idx+1, key.length-idx)+")";
key = key.substr(0, idx);
}
labels.push(key);
}