Show IP for forward destination (if available)

This commit is contained in:
DL6ER
2017-01-08 16:26:37 +01:00
parent a004b90ea1
commit 1e694b31aa

View File

@@ -175,7 +175,8 @@ function updateForwardDestinations() {
c.push(colors.shift());
if(key.indexOf("|") > -1)
{
key = key.substr(0, key.indexOf("|"));
var idx = key.indexOf("|");
key = key.substr(0, idx)+" ("+key.substr(idx+1, key.length-idx)+")";
}
forwardDestinationChart.data.labels.push(key);
});