diff --git a/src/public/index.html b/src/public/index.html
index 41679db..696af9f 100644
--- a/src/public/index.html
+++ b/src/public/index.html
@@ -1855,6 +1855,8 @@
tooltip += `
ID: ${node.node_id}`;
tooltip += `
Hex ID: ${node.node_id_hex}`;
tooltip += `
Updated: ${moment(new Date(node.updated_at)).fromNow()}`;
+ tooltip += (node.neighbours_updated_at ? `
Neighbours Updated: ${moment(new Date(node.neighbours_updated_at)).fromNow()}` : '')
+ tooltip += (node.position_updated_at ? `
Position Updated: ${moment(new Date(node.position_updated_at)).fromNow()}` : '')
return tooltip;