add plugin info field to help users connect their devices

This commit is contained in:
sparks-alec
2022-02-14 03:39:53 -05:00
parent 617ede46e0
commit 722e8fdada
+4 -1
View File
@@ -82,7 +82,10 @@ generateBodyHTML = function(d){
d.type +
'</em> is not responding to requests for data.</h2>';
str += '<h3>IP <em>' + d.addresses[0] + '</em></h3>';
str += '<h3>Port <em>' + d.port + '</em></h3></div>';
str += '<h3>Port <em>' + d.port + '</em></h3>';
str += '<hr></div>';
str += '<div class="device-info">'+PLUGINS.all[d.type].info()+'<div>';
}
return str;