show when neighbours and position was last updated
This commit is contained in:
parent
020c78ac85
commit
31cf3fb7f4
1 changed files with 2 additions and 0 deletions
|
|
@ -1855,6 +1855,8 @@
|
|||
tooltip += `<br/><br/>ID: ${node.node_id}`;
|
||||
tooltip += `<br/>Hex ID: ${node.node_id_hex}`;
|
||||
tooltip += `<br/>Updated: ${moment(new Date(node.updated_at)).fromNow()}`;
|
||||
tooltip += (node.neighbours_updated_at ? `<br/>Neighbours Updated: ${moment(new Date(node.neighbours_updated_at)).fromNow()}` : '')
|
||||
tooltip += (node.position_updated_at ? `<br/>Position Updated: ${moment(new Date(node.position_updated_at)).fromNow()}` : '')
|
||||
|
||||
return tooltip;
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue