diff --git a/lib/infobox/node.js b/lib/infobox/node.js index 97b0660..b08c8f9 100644 --- a/lib/infobox/node.js +++ b/lib/infobox/node.js @@ -252,11 +252,7 @@ define(['sorttable', 'snabbdom', 'd3-interpolate', 'moment', 'helper'], children.push(helper.attributeEntry(V, 'node.status', showStatus(d))); children.push(helper.attributeEntry(V, 'node.gateway', d.is_gateway ? 'ja' : undefined)); children.push(helper.attributeEntry(V, 'node.coordinates', showGeoURI(d))); - - if (config.nodeInfobox && config.nodeInfobox.contact) { - children.push(helper.attributeEntry(V, 'node.contact', helper.dictGet(d, ['owner', 'contact']))); - } - + children.push(helper.attributeEntry(V, 'node.contact', d.owner)); children.push(helper.attributeEntry(V, 'node.hardware', d.model)); children.push(helper.attributeEntry(V, 'node.primaryMac', d.network.mac)); children.push(helper.attributeEntry(V, 'node.firmware', showFirmware(d)));